decltype


有时遇到这种情况,不知道该变量返回的是什么类型,那么用decltype就行了



int a=12;

decltype(b)     sum;        //sum的类型和a一样,int

你可能感兴趣的:(decltype)