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..
Java 정리 3
·
JAVA
Using methods : a method is a section of code to which we assign a specific task. ex ) class Main { public static void main(String[] args) { hello(); //Hello method is called } public static void hello() { System.out.println("Hello World"); } } Colored by Color Scripter cs If you define a method outside of a class, there will be an error. To call a method, just write methodName( ) An argument is..
JAVA 정리 2
·
JAVA
Boolean can only be either true or false. Do not use double quotes. && = and, || = or Control flow class Main { public static void main(String[] args) { System.out.println("Hello Java"); if(condition) { //Run this code; } else if (condition) { //Run this code; } else { //Run this code; } } } Colored by Color Scripter cs Switch statements. class Main { public static void main(String[] args) { Sys..
Java 정리 1
·
JAVA
progate.com/dashboard Progate | Learn to code, learn to be creative. Progate is an online platform to learn programming. Learn to build your own apps and services. progate.com 프로게이트에서 자바 강의를 듣고 있다. 이론과 예시를 간단하게 슬라이드로 보여준 후, 바로 직접 코드를 짤 수 있는 예제가 주어져서 부담없이 공부하기 쉽다. 총 6개의 단계로 나눠져 있으며 내 기억으로는 3단계 이후부터는 멤버십을 가입해야 볼 수 있었다. 프로게이트 플러스 멤버십은 달에 $9.99 정도. 자바 외에도 다른 언어가 많아서 조금 더 들어볼 것 같다. 영어로 설명하긴 하지만 굳이 사전..