TIL/Network
TIL D-89 Best Effort
홍차23
2019. 10. 31. 22:55
네트워크 교수님께서 말씀하시길,
best effort
= no service at all
최선을 다해보고 안되면 말고 정도의 것.
best effort가 아니라 최소한 ~정도는 하겠다를 말해야 한다.
this.addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent event)
// method to check which window was closing
{
System.exit(0);
}
});