[작성자:] barnabas


[노래/가사/해석] Adele – Hello MV/Live/Corver(한국 고등학생등 다수)

Adele – Hello Hello, it’s me I was wondering if after all these years You’d like to meet, to go over everything They say that time’s supposed to heal ya But I ain’t done much healing 안녕, 나야 난 궁금했어. 이 시간들이 지나면 네가 날 만나서 모든걸 되돌아보고 싶어할지 사람들은 시간이 지나면 좋아질 거라는데 나는 […]

더 읽기

[java] 자바 static 변수의 접근방법과 초기화 시점

static 변수 – 인스턴스 생성과는 무관하게 초기화 되는 변수 – static 변수가 속한 클래스의 인스턴스가 여러번 생성되어도 static 변수는 하나만 존재 – public 으로 선언되면 어디서든 접근가능 아래 코드를 실행하면 num의 값이 공유되고 있음을 알 수 있다. public class AAA { public static void main(String[] args){ BBB b1=new BBB(); BBB b2=new BBB(); BBB b3=new BBB(); […]

더 읽기

[노래/가사/해석] Radiohead – Creep MV/live

Radiohead – Creep When you hear before 네가 전에 여기 왔을 때 couldn’t look you in the eye 난 널 제대로 쳐다볼 수가 없었어. You’re just like an angel 넌 정말이지 천사와 같아 your skin makes me cry 네 모습은 날 울게 만들어 you float like a feather in a beautiful world 넌 깃털처럼 아름다운 […]

더 읽기

[java] 자바 The public type [class name] must be defined in its own file 오류 원인

The public type [class name] must be defined in its own file 이 에러는 하나의 파일안에는 오직 해당 파일명으로 정의된 클래스에만 public을 선언할 수 있다는 말이다. 그 이외의 클래스에는 public을 붙일 수 없다. 아래 코드와 같이 public 를 삭제하면 에러가 사라진다. public class EX11 { // 파일명과 같은 클래스 /** * @param args */ public […]

더 읽기