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:

Post a Comment

You can use some HTML elements, such as <b>, <i>, <a>, also, some characters need to be entity referenced such as <, > and & Your comment may need to be confirmed by blog author. Your comment will be published under GFDL 1.3 or later license with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.