본 포스팅은 다음 링크의 내용에서 필요한 부분만 정리 & 번역 한 것입니다.
Programmer dictionary: Receiver
Terms “receiver” and “sender” comes from sending letter metaphor. We can think about the sender as the object which invokes a method (postman delivering an email), the receiver is the object whose…

수신자-리시버(receiver), 송신자-센더(sender)
리시버(수신자) receiver와 센더(송신자) sender 는 편지 보내기의 은유에서 유래한다. 센더는 메서드를 실행하는 오브젝트이고(편지를 전달하는 우체부) 리시버는 메서드가 호출된 오브젝트(편지를 받는 사람)라고 할 수 있다.
class Car {
private val engine = Engine()
fun startEngine() {
engine.start()
}
}
이 예에서 Engine
클래스는 리시버이고 Car
의 클래스는 센더이다.

객체는 메시지 를 보내 다른 객체에게 작업을 수행하도록 요청 합니다 . 요청 (송신) 오브젝트를 송신자 라고 하고 수신 오브젝트를 수신자 라고합니다 .
http://esug.org/data/Old/ibm/tutorial/OOP.HTML