2010-03-07

autoの意外な使い方

// int *が返る。値は123
new auto(123) ;

// double *が返る。値は3.14
new auto(3.14) ;

autoは、newで使える。戻り値は、括弧内の代入式の値で初期化される。ちなみに、decltypeも、newで使える。

//int *が返る。値は123
new decltype(123)(123) ;

// double *が返る。値は3.14
new decltype(3.14)(3.14) ;

decltypeは、式ではなく、type-specifierであるので、初期化が必要である。

No comments: