Advertisement
KHALED_JUBAIR_SHIHAB

Sample CT

Jul 27th, 2021
1,082
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.26 KB | None | 0 0
  1. package FirstClassTest;
  2.  
  3. public class Tester {
  4.     public final int x;
  5.     private Tester() {
  6.         x = 20;
  7.     }
  8.     public static void main(String[] args) {
  9.         Tester t = new Tester();
  10.         t.x=20;
  11.         System.out.println(t.x);
  12.  
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement