Post 라는 클래스가 있음.


Post post = new Post(context);


post.setThis_post(post);


이런식으로 들어가는거야


Post 클래스 내에는 


private Post this_post;


public void setThis_post(Post post){

this_post = post;

}  


public Post getThis_post(){

return this_post;

}


라고 되어있고.


그리고 객체안에는 버튼이 있는데 버튼 클릭했을때

어떤 메서드가 실행되고 그 메서드는 this_post 를 받아서 

이 post 라는 객체를 다시 수정할 수 있게 되어있는데


메서드(this_post);

또는

메서드(getThis_post());

로 해도 널포인트뜨는데 이거 뭐가 문제일지 같이 고민좀 해줘 ㅠㅠ