Notice
Recent Posts
Recent Comments
목록ADL (1)
NeuroWhAI의 잡블로그
[C++] ADL(Argument Dependent Lookup) 혹은 Koenig Algorithm 설명
참고 : https://stackoverflow.com/a/8111750 ADL은 말 그대로 인수에 의존해 이름 공간을 검색하는 기능입니다. 긴 말 필요없고 코드부터 봅시다. 12345678910111213141516171819202122232425262728#include #include namespace foo{ struct Bar { int data; }; void init(Bar& bar) { bar.data = 42; }} int main(){ //using foo::init; //using namespace foo; foo::Bar bar; init(bar); std::cout
개발 및 공부/언어
2018. 6. 23. 15:21