본문 바로가기

보고 듣고 읽고/movie

영화 소스 코드 소감 - 개발자 버전 (스포 O)


그러니까 대충 이런 느낌.... -_-;


//소스코드 소감 : 변수 초기화를 함부로 하면 안되겠다 ㅠㅠㅠㅠ
//기회가 되면 그동안 초기화 한 수 많은 a, i, num, cnt에게 사죄해야지...ㅠ.ㅠ

//그냥 대충 끄적인거라 아래 내용은 당연 엉망 -_-;

class Sean implements Colter { //exteds Colter {
 
 .....

 public String getTerroristName(int cntDeath) {
  .......
 }

 public void finalize() { //gc에 의해 소멸될 때 호출
  System.out.println("다들 행복했으면 좋겠어");
 }

}

public class CacoN {

 ....

 pulbic static void main (String[] args){

  ......

  while (terroristName != null){
   terroristName = sean1.getTerroristName(cntMission);
   cntMission++;
  }

  System.out.println(terroristName);

  System.gc(); //garbage collection이 정상적으로 안됨. 메모리 leak 계속 발생?!

 }
}