Emprie State of Mind by Jay Z & Alicia Keys [Jay-Z]yeahYeah I'm out that Brooklyn.๊ทธ๋ ์ฌ๊ธด ๋ธ๋ฃจํด๋ฆฐNow I'm down in Tribeca์ง๊ธ์ Tribeca์ ์์ดRight next to DeNiroDeNiro ๋ฐ๋ก์์ด์งBut I'll be hood forever๊ทธ๋ฌ๋ ๋ ๋น๋ฏผ๊ฐ์ ์์ํ ๋จธ๋ฌด๋ฅผ๊ฑฐ์ผI'm the new Sinatra๋๋ ์๋ก์ด SinatraAnd since I made it here๊ทธ๋ฆฌ๊ณ ๋ด๊ฐ ์ฌ๊ธฐ์ ์ฑ๊ณตํ์ผ๋ I can make it anywhere์ด๋์์๋ ์ฑ๊ณตํ ์ ์์ดYeah they love me everywhere์ฌ๋๋ค์ ์ด๋๊ณณ์์๊ฑด ๋๋ฅผ ์ข์ํดI used to cop in Harlem๋ ํ ๋ ์์ ๋ง์ฝ์ ์ฌ๊ณค..
My Tech Blog (๋ถ๋ฅ ์ ์ฒด๋ณด๊ธฐ)
If I Ain't Got Youby Alicia Keys(์จ๋ฆฌ์ค ํค์ค) Some people live for the fortune์ด๋ค ์ฌ๋๋ค์ ๋ถ๋ฅผ ์ํด ์ด์์โSome people live just for the fame์ด๋ค ์ฌ๋๋ค์ ๋จ์ง ๋ช
์๋ฅผ ์ํด ์ด์ ๊ฐ์ฃ โSome people live for the power yeah์ด๋ค ์ฌ๋๋ค์ ํ(๊ถ๋ ฅ)์ ์ํด ์ด์์โSome people live just to play the game์ด๋ค ์ฌ๋๋ค์ ๋จ์ง ์ฆ๊ธฐ๊ธฐ ์ํด ์ด์์โSome people think that the physical things define what's within์ด๋ค ์ฌ๋๋ค์ ๋ฌผ์ง์ ์ธ ๊ฒ๋ค์ด ๋ด๋ฉด์ ์ ์ํ๋ค๊ณ ์๊ฐํด์โAnd I've been there before, but that ..
Slow Motionby Karina I know that you've been calling me๋ ๋น์ ์ด ๋ด๊ฒ ์ฐ๋ฝํด ์๋จ ๊ฑธ ์์์And I'm happy that we met๊ทธ๋ฆฌ๊ณ ๋ ์ฐ๋ฆฌ๊ฐ ๋ง๋ฌ๋ค๋ ์ฌ์ค์ ํ๋ณตํด์Don't think that I'm not interested๋ด๊ฐ ๋น์ ์๊ฒ ๊ด์ฌ์ด ์๋ค๊ณ ์๊ฐํ์ง ๋ง์์I'm just playing hard to get์ ๊ทธ์ ๊ด์ฌ ์๋ ์ฒ ํ๊ณ ์์ ๋ฟ์ด๋๊น์So much about this crazy game they call love์ด ๋ฏธ์น ๊ฒ์์ ๊ทธ๋ค์ ์ฌ๋์ด๋ผ ๋ถ๋ฅด์ฃ That I'm trying to understand๊ทธ๋ฆฌ๊ณ ์ ๋ ์ดํดํ๋ ค๊ณ ๋
ธ๋ ฅ์ค์ด์์.so could you be my best friendBefore you call yo..
package ex01์๊ธ๊ณ์ฐํ๋ก๊ทธ๋จ; public abstract class Employee { // ์ ๊ทผ์ ํ์์ ์ข
๋ฅ // public = ์ด๋์๋ ๋๊ตฌ๋ ๋ค ์ ๊ทผ ๊ฐ๋ฅ // default = ๋์ผํ ํจํค์ง๋ง(์๋ฌด๊ฒ๋ ์ ์ ๋ ๊ฒ) // private = ํ์ฌ ํด๋์ค์์๋ง ์ ๊ทผ ๊ฐ๋ฅ // protected = ๋์ผํ ํจํค์ง๊ฑฐ๋ ์์๊ด๊ณ๊น์ง ์ ๊ทผ ๊ฐ๋ฅ // 1. ํ๋ // private -> public -> protected // ์ฌ๋ฒ protected String empno; //์ด๋ฆ protected String name; //์ฐ๋ด protected int pay; // default = ๋์ผํ ํจํค์ง๋ง // protected = ์์๊ด๊ณ๊น์ง ์ ๊ทผ ๊ฐ๋ฅ // ์๋ฐ ์ ์ฅ๊ณต๊ฐ // heap : ์ปค๋ค๋..
package ex02๋ํ
๋๊ฒ์๊ธฐ; public class Dongmul extends GameChip { @Override public void start() { System.out.println("๋๋ฌผ์์ฒ ๊ฒ์์ ์์ํฉ๋๋ค."); } } package ex02๋ํ
๋๊ฒ์๊ธฐ; public class Mario extends GameChip { @Override public void start() { System.out.println("๋ง๋ฆฌ์ค์นดํธ ๊ฒ์์ ์์ํฉ๋๋ค."); } } package ex02๋ํ
๋๊ฒ์๊ธฐ; public class Zelda extends GameChip { @Override public void start() { System.out.println("์ ค๋ค์ ์ ์ค์ ์์ํฉ๋๋ค."); }..
package ex01์์๊ธฐ์ด; public class Child extends Parent { // ์์ํด๋์ค, ์๋ธํด๋์ค(์๋ก์ด ํด๋์ค) // extends : ์์์ ๋ฐ์ ๋ ์ฌ์ฉํ๋ ํค์๋ // --> ์ฐ์ฅํ๋ค, ํ์ฅํ๋ค์ ์๋ฏธ๋ฅผ ๊ฐ์ง๊ณ ์์ // class ์๋ธํด๋์ค extends ์ํผํด๋์ค public void makeBong() { System.out.println("๋ง์๋ ๋ด๊ณจ๋ ํ์คํ๋ฅผ ๋ง๋ ๋ค~ ์!"); } public void makeSteak() { System.out.println("๋ฒํฐ์ ์์คํ๋ผ๊ฑฐ์ค๋ฅผ ์ถ๊ฐํด์ ์คํ
์ดํฌ๋ฅผ ๊ตฝ๋๋ค"); } /* * @author SMHRD(๋ง๋ ์ฌ๋ ์ด๋ฆ) * @since 23.07.12 * @param ๋งค๊ฐ๋ณ์์ ๋ํ ์ค๋ช
๋ฌ์์ฃผ๋ ๊ณณ * @ret..
14:00 ~ 16:00 ํฌ์ผ๋ชฌ๊ณ ๋ชจ๋คํผ ๋ฐ์ด ์ด๋ฒคํธ14:00 ACC๊ด์ฅ ๋ถํ์ด(์ฐ์ฒ์ผ๋ก ์ ์ผ๋น๋ฉ์์)18:00 ๊น๊ฐ์ฌ ์นผ๊ตญ์ ์ ๋
์ฝ์์ ๋ณด์ฒ๋ฆฌ๊ธฐ์ฌ ์์ฝ์ง ์ฝ๊ธฐ๐ฉท๐ฉท๐ฉท ์ ๋ณด์ฒ๋ฆฌ๊ธฐ์ฌ ๊ธฐ์ถ๋ฌธ์ ํ๊ธฐ๐ค๐ค๐ค๊ตญ์ ๊ต๋ฅ์ผํฐ ์ด๋ ฅ์+์๊ธฐ์๊ฐ์ ์ด์ ์์ฑ์ ๊ทผ๋ฐ ๊ทผ๋ฌด์ง๊ฐ ์ฒจ๋จ์.... ใ
ใ
๊ทธ๋ฅํ์ง๋ง๊น์๋์ ์์ 30 ํ์ด์ง ์ฝ๊ธฐ(์ด์ด์)ํํ๋ฌ์ ๋น๋ฐ์์ฌ 30 ํ์ด์ง ์ฝ๊ธฐ(์ด์ด์)
package ex02_ArrayList; import java.util.ArrayList; public class ArraylistMain { public static void main(String[] args) { // Collection // ์์(Element)๋ผ๊ณ ๋ถ๋ฆฌ๋ ๊ฐ๋ณ ๊ฐ์์ ๊ฐ์ฒด๋ค์ ์กํฉ // (๊ธฐ๋ณธ ์๋ฃํ์ ์ ์ฅํ๋ ๊ฒ์ ๋ถ๊ฐ๋ฅ int, double, float์๋จ) ๊ฐ์ฒด๋ง์ ์ ์ฅ // ์ฌ๋ฌ ๊ฐ์ ๊ฐ์ฒด ๋ณด๊ดํ ์ ์๊ฒ ๋ง๋ค์ด์ง ํด๋์ค๋ค์ ์กํฉ // ๊ณ ์ ํฌ๊ธฐ์ ๋ฐฐ์ด์ ๋ค๋ฃจ๋ ๋ถํธํจ ํด์ // ์์์ ๊ฐ์์ ๋ฐ๋ผ ์๋ ํฌ๊ธฐ ์กฐ์ // ์์์ ์ถ๊ฐ, ์ญ์ ์ ๋ฐ๋ฅธ ์์์ ์ด๋์๋๊ด // ์ ๋ค๋ฆญ(generic) ๊ธฐ๋ฒ์ผ๋ก ๊ตฌํ // Collection์ ํ ์ข
๋ฅ์ธ ArrayList // - ๊ฐ..