官术网_书友最值得收藏!

New rules for type auto-detection from braced initializer list 

C++17 introduced new rules for auto-detection of the initializer list, which complements C++14 rules. The C++17 rule insists that the program is ill-formed if an explicit or partial specialization of std::initializer_list is declared:

#include <iostream>
using namespace std;

template <typename T1, typename T2>
class MyClass {
private:
T1 t1;
T2 t2;
public:
MyClass( T1 t1 = T1(), T2 t2 = T2() ) { }

void printSizeOfDataTypes() {
cout << "\nSize of t1 is " << sizeof ( t1 ) << " bytes." << endl;
cout << "\nSize of t2 is " << sizeof ( t2 ) << " bytes." << endl;
}
};

int main ( ) {

//Until C++14
MyClass<int, double> obj1;
obj1.printSizeOfDataTypes( );

//New syntax in C++17
MyClass obj2( 1, 10.56 );

return 0;
}

The preceding code can be compiled and the output can be viewed with the following commands:

g++-7 main.cpp -std=c++17
./a.out

The output of the preceding program is as follows:

Values in integer vectors are ...
1 2 3 4 5

Values in double vectors are ...
1.5 2.5 3.5
主站蜘蛛池模板: 新宁县| 常山县| 屏山县| 新建县| 纳雍县| 通海县| 湟中县| 阿图什市| 桃园县| 唐海县| 和平区| 江西省| 远安县| 海盐县| 凉城县| 安新县| 万山特区| 黄石市| 诸暨市| 黔南| 水城县| 清流县| 龙游县| 日土县| 曲阜市| 琼中| 淅川县| 伊宁市| 龙岩市| 吉首市| 托里县| 博野县| 缙云县| 钦州市| 双江| 三门县| 虞城县| 永善县| 册亨县| 沙田区| 科技|