Java | Constructors | Question 1
Predict the output?
package main; class T { int t = 20 ; } class Main { public static void main(String args[]) { T t1 = new T(); System.out.println(t1.t); } } |
(A) 20
(B) 0
(C) Compiler Error
Answer: (A)
Explanation: In Java, member variables can assigned a value with declaration. In C++, only static const variables can be assigned like this.
Quiz of this Question
Please Login to comment...