Bound와 unbound reference는 receiver 공급 시점이 다르다

둘을 같은 signature로 기억하면 target interface의 인수 개수를 틀리기 쉽습니다.

obj::method

receiver 미리 capture · SAM 인수 감소

Type::method

첫 SAM 인수가 receiver

Type::static

receiver 없음

핵심: bound는 생성 시 객체를 고정하고 unbound는 호출자가 첫 인수로 제공합니다.