javaide
javaide copied to clipboard
"x" cannot be resolved or is not a field
trafficstars
package com.master; public class test {
public static void main(String[] args) {
int x = 5;
test myObj = new test();
System.out.println(myObj.x);
}
}