次のコードを使用できますか? オブジェクトではなく、obj.i でエラーをスローしています。これはオブジェクトを使用する合法的な方法ですか? また、通常の構文 obj s = new obj(); を使用する以外に、オブジェクトを作成する方法はいくつありますか?
public class Test {
static int i;
static Test obj;
obj.i = 10; //am getting a compilation error here "Syntax error on token "i", VariableDeclaratorId expected after this token"
public static void main(String[] args) {
System.out.println(i+" "+ obj);
}
}