분류 전체보기


본 포스팅은 생활코딩님의 유튜브 채널을 참고하였습니다. 본 포스팅을 실습하시고 싶다면, youtu.be/uj2mOvjhj4o 로 접속하여 생활코딩님의 github에 있는 소스코드를 다운하여 따라 하시면 됩니다. 생활코딩님, 감사합니다. | CONTENTS - PACKAGE - IMPORT - PACKAGE와 .java 파일이 같은 디렉토리에 있을 때 컴파일하는 경우 - PACKAGE와 .java 파일이 다른 디렉토리에 있을 때 컴파일하는 경우 - PACKAGE와 .java 파일이 다른 디렉토리에 있을 때 컴파일할 수 있게 하는 방법 | PACKAGE PACKAGE : 디렉토리 (폴더) 와 비슷한 개념이다. java에서는 import로 다른 class를 불러다가 사용할 수 있는데, 사용하는 class가 존..


| All students ex ) All students have to participate in the conference. --> No students excluded 제외되는 학생이 없다. 즉, 우리나라 말로 모든 학생들. 일절의 제한 없이 학생 전체를 일컬을 때 쓰는 느낌이다. | All the students ex ) All the students have to participate in the conference. --> referring to particular students, for example, the students in his class, in his school or whatever. All the students 는 'the'를 포함함으로써 특정성이 생긴다. 가령, 특정 학급..


| CAST Alice (Natalie Portman) - She is a stripper Dan (Jude Law) - He is a journalist Larry (Clive Owen) - He is a doctor Anna (Juila Roberts) - She is a photographer | PEOPLE ASK What is the point of the moive 'Closer'? --> 'Closer' follows two London couples who meet, fall in love, fall out of love, swap partners, and swap back again, in the process wounding one another in all the ways of whi..


| Earlier this month ex) Earlier this month, a review was carried out. --> "Earlier this month" is always used to refer to things in the past. | Early this month ex.1) We will be carrying out a review early this month. ex.2) If today is the 1st, and I say "I'll give you my answer early this month," you'll get my answer in a few days. --> "Early this month" can be used for the future. | BYE It de..


| SENTENCE The Alibaba-backed (BABA) Chinese electric carmaker earlier said it had raised more money than expected, despite the souring of US-China relations. Xpeng said Thursday that it sold more than 99.7 million shares (for $15 each) (in its Wall Street debut), raising (about $1.5 billion). It had originally planned to sell 85 million shares (priced between $11 and $13). Its stock began tradi..


| CONTENTS - Java의 동작원리 - What is JVM? | Java의 동작원리 Java Source code : 인간이 이해할 수 있는 자바로 짜여진 코드 (우리가 코딩하는 화면에 있는 그 내용들을 담은 파일) Compile : javac가 filename.java 라는 자바 파일을 컴파일하면 .class라는 파일이 생성된다. Java Application : 확장자 명은 .class 로 .java 파일의 컴파일 결과물이다. 바이너리코드로 작성되어 있어 컴퓨터가 이해할 수 있다. Java Virtual Machine : 일명 JVM. 실행하면 JVM으로 .class파일이 보내지고 JVM을 거친 파일을 컴퓨터가 출력한다. | JVM JVM 은 쉽게 말해 Java 와 OS 사이의 중계자 역할을..


| SITUATION Lane과 Rory가 함께 Lane의 집에 간 장면에서, 레인의 어머니는 아이들에게 학교는 어땠고, 임신하거나 자퇴한 애들은 없는지 물어봅니다. 거기서 Lane은 없다고 대답하는데 Rory가 “Come to think of it”이라고 말한 후, 장난을 치는 상황입니다. (Episode 1. 12:00 ~ 12:12) | DIALOGUE MOM : How was school? None of the girls get pragnant, drop out? Lane : Not that we know of Rory : Come to think of it, Joanna Posner was glowing a little. Mom : What? Lane : Nothing, mama. She’s j..


| 목차 - java 그리고 javac 가 있는 디렉토리 탐색 - PATH (환경변수)에 경로 추가 - javac 명령어를 이용한 컴파일 - java 명령어를 이용한 실행 | java 그리고 javac 가 있는 디렉토리 탐색 1. TERMINAL 실행 2. /usr/libexec/java_home 입력 3. cd 위의 결과물 복사/bin 입력 4. ls 입력하여 java와 javac 가 있는지 확인 5. pwd 입력 6. 경로 복사 | PATH (환경변수)에 경로 추가 1. echo $PATH 입력 2. nano ~/.bash_profile 입력 3. 빈 화면이 출력되면 export PATH=$PATH: 복사한 경로 붙여 넣기 | javac 명령어를 이용한 컴파일 1. .java가 있는 아무 디렉토리로 ..


리눅스 명령어로 폴더와 파일 만드는것들을 찾아보다가 생각나서 포스팅! 내가 자주 쓰는 것들을 정리해 놓으테니 필요하면 참고하도록! pwd (print working directory) 지금 내가 작업중인 디렉토리를 알려주는 command cd (change directory) 디렉토리 이동을 하고자 할 때 사용하는 command 절대 경로와 상대 경로로 이동이 가능 해! 1. 절대경로 첫 째줄 Desktop이 나의 현재 디렉토리! cd명령어를 이용해서 Doodle 디렉토리로 가고 싶다면 어떻게 해야 할까? 절대 경로는 최상위 디렉토리 (/)부터 시작해서 목표 디렉토리까지 가는 경로를 전부 기술해야 해! /Users/macjin/Desktop/C/Doodle 이런식으로 해서 pwd 명령어를 사용하면 저렇게..