Java 정리 4
·
JAVA
Properties and actions Classes and instances are two important object-oriented programming concepts. In fact, "instance" is another name for an object and a "class" is a blueprint of an instance An instance has a properties and actions and we define them in a class. Creating instances we create an instance from a class as follow : new ClassName( ); ex ) class Main { public static void main(Strin..