Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class Test1 {
- public static void main(String[] args) {
- int i = new Test2().getI();
- }
- }
- public class Test2 {
- private int i = 5;
- public int getI() {
- return this.i;
- }
- }
- public class Test3 {
- public static void main(String[] args) {
- int i = Test4.getI();
- }
- }
- public class Test4 {
- private static int i = 5;
- public static int getI() {
- return this.i;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment