public class Prac {
public static void main(String[] args) throws Exception{
int x = 6;
Prac p = new Prac();
p.doStuff(x);
System.out.println(" main x = " + x);
}
void doStuff(int x){
System.out.println(" doStuff x = " + x++);
}
}
And the command-line invocations:
javac Prac.java
java Prac 5