This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| if( user.isCustomer() ) { | |
| … | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| if( user.isCustomer() && account.equals(id) ) { | |
| ... | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| if ( user.isCustomer() && | |
| account.equals(id) ) { | |
| ... | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| int methodId = 2; | |
| Object[] root = new Object[9]; | |
| List<Object> valCjrukeawxor = new LinkedList<Object>(); | |
| Set<Object> valRvshucjormy = new HashSet<Object>(); | |
| boolean valSboiogeldpb = true; | |
| valRvshucjormy.add(valSboiogeldpb); | |
| boolean valPjvoucyfprv = true; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -> 2 + 2 | |
| | Expression value is: 4 | |
| | assigned to temporary variable $1 of type int |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public static void main(String[] args) throws Exception { | |
| Process proc = Runtime.getRuntime().exec(new String[] { | |
| "/bin/sh", | |
| "-c", | |
| "echo $PPID" | |
| }); | |
| if (proc.waitFor() == 0) { | |
| InputStream in = proc.getInputStream(); | |
| int available = in.available(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| System.out.println("Your pid is " + Process.getCurrentPid()); |
OlderNewer