Is the correct terminology in Java attributes or class variables or class fields etc? Many thanks
This to confirm is for variables declared in the class Main...I've seen these variables called a few things and just curious what the correct term for Java would be?
e.g.
public class Main {
int x = 10;
int modelYValue;
String modelName;
Boolean joyous;
private int age = 28;
}