template<typename T>
void f(std::initializer_list<T> initList)
{
std::cout << "constructed with a " << initList.size() << "-element list\n";
for(auto i = l.begin(); i != l.end(); i++)
{
std::cout << "element " << *i << "\n";
}
}
std::initializer_list<int> f2()
{
return { 1, 2, 3 };
}
f({10, 20, 30});
f(f2());
output
constructed with a 3-element list
element 10
element 20
element 30
constructed with a 3-element list
element 1
element 2
element 3
피드 구독하기:
댓글 (Atom)
-
대상이 되는 이미지를 SVG(Scalable Vector Graphics) 이미지로 변환 - 각종 툴이나 웹상에서 바로 바꿔주는 다양한 방법이 있음(검색 검색~) - 찾은거 하나 : http://image.online-convert.com/c...
-
MQTT mosquitto 서버 설치와 간이 테스트 https://mosquitto.org 모스키토 설치 brew install mosquitto 모스키토 서비스 실행 brew services start mosquitto 모스키...
-
Unity3d에서 Rust 라이브러리를 생성하여 rust함수를 호출해 보기 Rust를 사용하여 라이브러리를 생성/빌드 한 뒤 유니티에서 Plugin으로 dll import하여 함수 사용 -- Rust -- 숫자 2개를 더해 리턴하는 간단한 ...
댓글 없음:
댓글 쓰기