전체 글 (65) 썸네일형 리스트형 지각동사 SEEHEARFEELSMELL -> 조금만 특징이 있어도 이름을 붙이는 영어눔들 특별 취급 한다. I see him to drive.-> 특별 취급 -> 눈에 띄게 하겠다 -> 강조 하겠다. -> 과감하게 문법을 틀리겠다.-> 새로운 단어를 빼는것이 더 쉽다. -> 빼면 문법이 틀린다. -> 문법은 틀리더라도 내용은 틀리면 안된다. -> 빼도 내용상 데미지가 덜 한 것I see him drive. (1. 지각동사라서 문법적으로 틀려서 강조 하겠다. 2. to는 빼도 내용상 데미지가 가장 적다.) ** 지각동사는 to 부정사와 같이 사용 하지 않는다. 지각동사는 동사원형과 같이 사용한다. 영어의 강조 방법)1. 중요하고 강조 하고 싶은것은 앞으로 보낸다.2.문법을 강조 한다. ( 앞으로) - Will yo.. TO 부정사 1. to verb, in order to, to I liked to go to Disney Land to see the firework. We tried to study English to take the test. He agreed to come to meeting to help. We decided to visit Death Valley to experience high temperature on the way to Las Vegas. 나에 대한 단상 [ 2011. 08. 23 ] 0, 1, 41 살아온 삶을 되돌아 볼 떄는 나이을 생각하고 그 전의 시간을 천천히 되돌아 보는 것이 필요한 것 같다. 0 부터 시작 했던 시간들이 1을 지나 2을 향해 한시도 늦추지 않고, 그렇다고 빠르지도 않는 절대적인 시간으로 흐르고 있다. 나의 직업에서는 2는 마지막 수이다. 2가 지나면 다시 0으로 수렴 한다. 그리고 다시 시작 한다. 무을 의미하는 '0'에서 유일한 '1'까지 그리고 다시 '0'으로. 인생의 무한 반복 같은 삶을 산다. 사는 동안 (while) 영원할 것 같지? 하지만 우린 사는 날까지 (for) 유한한 삶을 살고 있다. 까지을 모르는 것이 흠이긴 하지만, 인간의 욕구는 그렇지 않다. 늘 결과을 보고 싶어 하는 것이지! 그래서 우린 간단히 inspection을 해본다. 짧게 간.. 스캔들 미술사 스캔들미술사 카테고리 역사/문화 > 문화일반 > 세계문화사 지은이 하비 래클린 (리베르, 2009년) 상세보기 Java Try / Catch import java.io.*; public class TryCatch { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub BufferedReader in = new BufferedReader(new InputStreamReader(System.in)); String name; int kor, eng, math; try { name = in.readLine(); kor = Integer.parseInt(in.readLine()); math = Integer.parseInt(in.readLine()); eng = Integer.parseInt(in.readLine()); Studen.. Java String Compare public class StringTest { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub //String str1 = "Hello"; //String str2 = "Hello"; String str1 = new String("Hello"); String str2 = new String("Hello"); // if( str1.equals(str2) == true){ if( str1 == str2 ){ System.out.println("str1 == str2"); } else{ System.out.println("str != str2"); } } } Java Interface interface Greeting{ public void say(); } class Korea implements Greeting { public void say(){ System.out.println("한국 인사: 안녕" ); } } class America implements Greeting{ public void say(){ System.out.println("English say!!"); } } public class InterfaceTest { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub Korea kor = new Korea(); America eng = new Am.. Java Inheritance public class ChildClass extends ParentClass { int child_i = 200; void child_method(){ System.out.println("Child Method"); } } /* public class ParentClass { int parent_i = 100; void parent_method(){ System.out.println("Parent Method"); } } */ public class InheritanceTest { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub ChildClass c = new ChildClas.. 이전 1 2 3 4 5 ··· 9 다음