public class ServerExample {


List<Client> connections = new Vector<Client>();


class Client {


void receive() {


}


void send(String data) {

connections.remove(Client.this);


}

}

}


public static void main(String[] args) {


}



코드 큰 부분들만 작성했는데,

여기서 Client.this 이 코드를 모르겠어


this가 무엇을 의미하는거야?