๋ณธ๋ฌธ ๋ฐ”๋กœ๊ฐ€๊ธฐ

๐Ÿ’ปWEB BackEnd/ํ”„๋ ˆ์ž„์›Œํฌ Spring

๊ฐ์ฒด ์ƒ์„ฑ - (๋ฐฉ๋ฒ•1) new์—ฐ์‚ฐ์ž๋ฅผ ์ด์šฉ

new์—ฐ์‚ฐ์ž๋ฅผ ์ด์šฉํ•ด ๊ฐ์ฒด ์ƒ์„ฑ

1) ํด๋ž˜์Šค ์ƒ์„ฑ

 

ํด๋ž˜์Šค ์ƒ์„ฑ ์™„๋ฃŒ!

package testPjt;

public class TransportationWalk {
	public void move() {
		System.out.println("hello");
	}
}

 

2) ๋ฉ”์ธํด๋ž˜์Šค ์ƒ์„ฑ

package testPjt;

public class MainClass {
	public static void main(String[] args) {
		TransportationWalk transportationWalk = new TransportationWalk();
		transportationWalk.move();
	}
}

 

๊ฒฐ๊ณผ ํ™”๋ฉด!