Skip to content

Instantly share code, notes, and snippets.

@sunmeat
Created March 27, 2016 21:50
Show Gist options
  • Save sunmeat/8ee72039a1fb5115a921 to your computer and use it in GitHub Desktop.
Save sunmeat/8ee72039a1fb5115a921 to your computer and use it in GitHub Desktop.
static field sample
package pack;
class Student {
static String academy = "IT Step";
int name;
double avgRating;
}
class AudiCar {
static String brand = "Audi";
String vehicleIdentificationNumber;
String passport;
}
public class Program {
public static void main(String[] args) {
System.out.println(Student.academy);
System.out.println(AudiCar.brand);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment