package ClassAndObject;
public class TestObject {
/**
* @param args
*/
static int a = 30;
int b = 40;
public static void main(String[] args) {
// TODO Auto-generated method stub
TestObject obj = new TestObject();
System.out.println(obj.b);
System.out.println(TestObject.a);
}
}
public class TestObject {
/**
* @param args
*/
static int a = 30;
int b = 40;
public static void main(String[] args) {
// TODO Auto-generated method stub
TestObject obj = new TestObject();
System.out.println(obj.b);
System.out.println(TestObject.a);
}
}
No comments:
Post a Comment