C++ 11 新特性之Class

这是C++11新特性介绍的第六部分,涉及到Class的相关内容。

不想看toy code的读者可以直接拉到文章最后看这部分的总结。

sizeof

新标准中,sizeof可以直接用于获取Class::member的大小,而不用通过Class的实例。

class TestClass
{
public:
	int member_i;
	char member_c;
};

cout<<"test sizeof class member:\n"; cout<<sizeof(TestClass::member_i)<<"\t"<<sizeof(TestClass::member_c)<<endl;

default constructor

新标准中,可以通过=default强制编译器生成一个默认constructor。

class TestClass
{
public:
	TestClass() = default;
	TestClass(const int i, const char c): member_i(i), member_c(c) {} int member_i; char member_c; }; cout<<"test =default class construct:\n"; TestClass tc; // may cause error if no default construct. cout<<tc.member_i<<'\t'<<(short)tc.member_c<<endl; cout<<"test =default done."<<endl;

在上面的代码中,如果我们不提供默认constructor的话,无法通过TestClass tc定义一个实例。

delegate constructor

新标准中,可以在初始化列表中将一个constructor初始化的工作委托给另一个constructor。

class TestClass
{
public:
	TestClass() = default;
	TestClass(const int i, const char c): member_i(i), member_c(c) {} TestClass(const int i): TestClass(i, 0) { member_c = 'T';} int member_i; char member_c; }; cout<<"test delegating constructor:\n"; TestClass tc2(2); cout<<tc2.member_i<<'\t'<<tc2.member_c<<endl;

allocator.construct

新标准中,allocator.construct可以使用任意的构造函数。

class TestClass
{
public:
	TestClass() = default;
	TestClass(const int i, const char c): member_i(i), member_c(c) {} TestClass(const int i): TestClass(i, 0) { member_c = 'T';} int member_i; char member_c; }; cout<<"test allocator:\n"; allocator<TestClass> alloc; auto p = alloc.allocate(10); alloc.construct(p, 10); cout<<p->member_i<<'\t'<<p->member_c<<endl;

copy constructor

新标准中,可以通过=default要求编译器合成默认的拷贝/赋值构造函数。

class TestClass
{
public:
	TestClass() = default;
	TestClass(const int i, const char c): member_i(i), member_c(c) {} TestClass(const int i): TestClass(i, 0) { member_c = 'T';} TestClass(const TestClass&) = default; TestClass& operator=(const TestClass&); int member_i; char member_c; }; cout<<"test =default class copy construct:\n"; TestClass tc3(tc2); TestClass tc4 = tc2; cout<<tc3.member_i<<'\t'<<tc3.member_c<<endl; cout<<tc4.member_i<<'\t'<<tc4.member_c<<endl;

同样,新标准中也允许用=delete禁止拷贝。

class TestClass
{
public:
	TestClass() = default;
	TestClass(const int i, const char c): member_i(i), member_c(c) {} TestClass(const int i): TestClass(i, 0) { member_c = 'T';} TestClass(const TestClass&) = delete; TestClass& operator=(const TestClass&); int member_i; char member_c; }; TestClass& TestClass::operator=(const TestClass&) = default; cout<<"test =delete class copy construct:\n"; //TestClass tc5(tc2); // error: use of deleted function ‘TestClass::TestClass(const TestClass&)’ //cout<<tc5.member_i<<'\t'<<tc5.member_c<<endl; cout<<"test =delete done."<<endl;

override和final

新标准中提供了override和final两个关键字,用于标识子类对父类中虚函数的重写(override)或禁止重写(final)。

class TestClass
{
public:
	TestClass() = default;
	TestClass(const int i, const char c): member_i(i), member_c(c) {} TestClass(const int i): TestClass(i, 0) { member_c = 'T';} TestClass(const TestClass&) = default; TestClass& operator=(const TestClass&); virtual void print_msg() {cout<<member_i<<'\t'<<member_c<<endl;} virtual void final_foo() final {} int member_i; char member_c; }; TestClass& TestClass::operator=(const TestClass&) = default; class SubTestClass final: public TestClass { public: using TestClass::TestClass; SubTestClass(const int i): TestClass(i, 'S') {} void print_msg() override; //void print_msg(char c) override; //‘void SubTestClass::print_msg(char)’ marked override, but does not override //void final_foo() {} //overriding final function ‘virtual void TestClass::final_foo()’ }; //class SubSubTestClass: public SubTestClass {}; // cannot derive from ‘final’ base ‘SubTestClass’ in derived type ‘SubSubTestClass’ void SubTestClass::print_msg() { cout<<"i: "<<member_i<<'\t'<<"c: "<<member_c<<endl; } cout<<"test override:\n"; TestClass *stc_ptr = new SubTestClass(10); stc_ptr->print_msg(); SubTestClass stc(10); TestClass tc6 = (TestClass)stc; tc6.print_msg();

如果标识了override的函数实际上没有重写父类中的函数,或者标识final的函数被子类重写,编译器都会报错。

通样的,标识为final的类也不允许作为父类被继承。

委托父类构造函数

新标准中,也支持子类在初始化列表中直接委托父类的构造函数完成初始化。

class SubTestClass final: public TestClass
{
	public:
		using TestClass::TestClass;
		SubTestClass(const int i): TestClass(i, 'S') {} void print_msg() override; }; cout<<"test inherit base class contructor:\n"; SubTestClass stc2(1024, 'H'); stc2.print_msg();

多继承与默认constructor

多重继承的子类可以直接继承父类的构造函数,但是如果父类中有形参列表完全相同的构造函数,则会产生冲突,这时需要子类自己定义一个自己版本的构造函数。

class TestClass2
{
public:
	TestClass2() = default;
	TestClass2(const int i) {}
};

class MultiSubClass: public TestClass, public TestClass2 { public: using TestClass::TestClass; using TestClass2::TestClass2; // conflicts with version inherited from ‘TestClass’ MultiSubClass(const int i): TestClass(i) {} MultiSubClass() = default; }; cout<<"test multi inherit constructor:\n"; MultiSubClass mtc(1024); mtc.print_msg(); return 0;

总结

  1. sizeof可以直接用于获取Class::member的大小,而不用通过Class的实例。
  2. 可以通过=default强制编译器生成一个默认constructor。
  3. 可以在初始化列表中将一个constructor初始化的工作委托给另一个constructor,以及父类的constructor。
  4. allocator.construct可以使用任意的构造函数。
  5. 可以通过=default要求编译器合成默认的拷贝/赋值构造函数,也可以通过=delete禁止拷贝。
  6. 新标准中提供了override和final两个关键字,用于标识子类对父类中虚函数的重写(override)或禁止重写(final),编译会对这两种情况进行检查。final还可以用于类的标识,表示禁止继承。
  7. 多重继承的子类可以直接继承父类的构造函数,但是如果父类中有形参列表完全相同的构造函数,则会产生冲突,这时需要子类自己定义一个自己版本的构造函数。
  8. http://www.cere.cc/editor/attached/file/20200520/20200520225629_7073.html
    http://www.cere.cc/editor/attached/file/20200520/20200520225623_6136.html
    http://www.cere.cc/editor/attached/file/20200520/20200520225909_2542.html
    http://www.cere.cc/editor/attached/file/20200520/20200520230101_2542.html
    http://www.cere.cc/editor/attached/file/20200520/20200520225701_2230.html
    http://www.cere.cc/editor/attached/file/20200520/20200520225805_2542.html
    http://www.cere.cc/editor/attached/file/20200520/20200520225615_4886.html
    http://www.cere.cc/editor/attached/file/20200520/20200520225925_2386.html
    http://www.cere.cc/editor/attached/file/20200520/20200520225549_3636.html
    http://www.cere.cc/editor/attached/file/20200520/20200520225725_2230.html
    http://www.cere.cc/editor/attached/file/20200520/20200520225957_2855.html
    http://www.cere.cc/editor/attached/file/20200520/20200520230029_2542.html
    http://www.cere.cc/editor/attached/file/20200520/20200520225941_2386.html
    http://www.cere.cc/editor/attached/file/20200520/20200520225709_3323.html
    http://www.cere.cc/editor/attached/file/20200520/20200520230005_2542.html
    http://www.cere.cc/editor/attached/file/20200520/20200520225605_2698.html
    http://www.cere.cc/editor/attached/file/20200520/20200520230021_2698.html
    http://www.cere.cc/editor/attached/file/20200520/20200520230037_2542.html
    http://www.cere.cc/editor/attached/file/20200520/20200520225829_2386.html
    http://www.cere.cc/editor/attached/file/20200520/20200520225933_3792.html
    http://www.cere.cc/editor/attached/file/20200520/20200520225646_2386.html
    http://www.cere.cc/editor/attached/file/20200520/20200520225821_2386.html
    http://www.cere.cc/editor/attached/file/20200520/20200520225653_3167.html
    http://www.cere.cc/editor/attached/file/20200520/20200520225749_2386.html
    http://www.cere.cc/editor/attached/file/20200520/20200520230013_2542.html
    http://www.cere.cc/editor/attached/file/20200520/20200520225853_2386.html
    http://www.cere.cc/editor/attached/file/20200520/20200520225949_2386.html
    http://www.cere.cc/editor/attached/file/20200520/20200520225813_2386.html
    http://www.cere.cc/editor/attached/file/20200520/20200520225541_4261.html
    http://www.cere.cc/editor/attached/file/20200520/20200520230109_2542.html
    http://www.cere.cc/editor/attached/file/20200520/20200520225733_2386.html
    http://www.cere.cc/editor/attached/file/20200520/20200520230053_2386.html
    http://www.cere.cc/editor/attached/file/20200520/20200520230045_3480.html
    http://www.cere.cc/editor/attached/file/20200520/20200520225845_2386.html
    http://www.cere.cc/editor/attached/file/20200520/20200520225741_2386.html
    http://www.cere.cc/editor/attached/file/20200520/20200520225837_2542.html
    http://www.cere.cc/editor/attached/file/20200520/20200520225557_2386.html
    http://www.cere.cc/editor/attached/file/20200520/20200520225901_2386.html
    http://www.cere.cc/editor/attached/file/20200520/20200520225637_2386.html
    http://www.cere.cc/editor/attached/file/20200520/20200520225917_2386.html
    http://www.cere.cc/editor/attached/file/20200520/20200520225757_3480.html
    http://www.cere.cc/editor/attached/file/20200520/20200520225717_2386.html
    http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225554_3577.html
    http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520230001_3249.html
    http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520230113_3088.html
    http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225602_2483.html
    http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225627_6075.html
    http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225642_2324.html
    http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225737_2008.html
    http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225809_2006.html
    http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520230017_3248.html
    http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225833_2786.html
    http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225634_7793.html
    http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225825_2317.html
    http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225621_5763.html
    http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520230010_2311.html
    http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520230105_3245.html
    http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225921_2002.html
    http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225722_2165.html
    http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225914_2158.html
    http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225849_7160.html
    http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520230041_3402.html
    http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225755_2163.html
    http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225931_2782.html
    http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225658_2167.html
    http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225841_2785.html
    http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225538_4360.html
    http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225729_1696.html
    http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520230026_2310.html
    http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520230033_3091.html
    http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225650_2792.html
    http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225954_2156.html
    http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225857_4034.html
    http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225706_2167.html
    http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225905_2002.html
    http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225745_2007.html
    http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225612_3264.html
    http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225714_2009.html
    http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225801_3569.html
    http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225946_2156.html
    http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520230057_3089.html
    http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520230049_3246.html
    http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225817_1693.html
    http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225936_4188.html
    http://www.ht-blue.com/kindeditor/attached/file/20200520/20200520225547_2015.html
    http://www.lited.com/kindeditor/attached/file/20200520/20200520225782878287.html
    http://www.lited.com/kindeditor/attached/file/20200520/20200520230193359335.html
    http://www.lited.com/kindeditor/attached/file/20200520/20200520225859065906.html
    http://www.lited.com/kindeditor/attached/file/20200520/2020052022550199199.html
    http://www.lited.com/kindeditor/attached/file/20200520/20200520230013641364.html
    http://www.lited.com/kindeditor/attached/file/20200520/20200520230073047304.html
    http://www.lited.com/kindeditor/attached/file/20200520/20200520225882568256.html
    http://www.lited.com/kindeditor/attached/file/20200520/20200520225921442144.html
    http://www.lited.com/kindeditor/attached/file/20200520/20200520225771607160.html
    http://www.lited.com/kindeditor/attached/file/20200520/20200520230068686868.html
    http://www.lited.com/kindeditor/attached/file/20200520/20200520230068366836.html
    http://www.lited.com/kindeditor/attached/file/20200520/20200520225741874187.html
    http://www.lited.com/kindeditor/attached/file/20200520/20200520230076137613.html
    http://www.lited.com/kindeditor/attached/file/20200520/20200520225812051205.html
    http://www.lited.com/kindeditor/attached/file/20200520/20200520225794879487.html
    http://www.lited.com/kindeditor/attached/file/20200520/20200520230068486848.html
    http://www.lited.com/kindeditor/attached/file/20200520/2020052022590737737.html
    http://www.lited.com/kindeditor/attached/file/20200520/20200520225816741674.html
    http://www.lited.com/kindeditor/attached/file/20200520/20200520225937113711.html
    http://www.lited.com/kindeditor/attached/file/20200520/2020052022570288288.html
    http://www.lited.com/kindeditor/attached/file/20200520/20200520230031793179.html
    http://www.lited.com/kindeditor/attached/file/20200520/20200520225759495949.html
    http://www.lited.com/kindeditor/attached/file/20200520/20200520225637053705.html
    http://www.lited.com/kindeditor/attached/file/20200520/20200520225564196419.html
    http://www.lited.com/kindeditor/attached/file/20200520/20200520225674957495.html
    http://www.lited.com/kindeditor/attached/file/20200520/2020052022570264264.html
    http://www.lited.com/kindeditor/attached/file/20200520/20200520225646784678.html
    http://www.lited.com/kindeditor/attached/file/20200520/20200520225932533253.html
    http://www.lited.com/kindeditor/attached/file/20200520/20200520225635573557.html
    http://www.lited.com/kindeditor/attached/file/20200520/20200520230079607960.html
    http://www.lited.com/kindeditor/attached/file/20200520/20200520225865236523.html
    http://www.lited.com/kindeditor/attached/file/20200520/20200520225617811781.html
    http://www.lited.com/kindeditor/attached/file/20200520/20200520225830113011.html
    http://www.lited.com/kindeditor/attached/file/20200520/20200520225913661366.html
    http://www.lited.com/kindeditor/attached/file/20200520/20200520225631473147.html
    http://www.lited.com/kindeditor/attached/file/20200520/20200520225569126912.html
    http://www.lited.com/kindeditor/attached/file/20200520/20200520225874617461.html
    http://www.lited.com/kindeditor/attached/file/20200520/20200520225977647764.html
    http://www.lited.com/kindeditor/attached/file/20200520/20200520225614371437.html
    http://www.lited.com/kindeditor/attached/file/20200520/20200520225835853585.html
    http://www.lited.com/kindeditor/attached/file/20200520/20200520225954435443.html
    http://www.lited.com/kindeditor/attached/file/20200520/20200520225614001400.html
    http://www.qdc.com/kindeditor/attached/file/20200520/20200520110041_3737.html
    http://www.qdc.com/kindeditor/attached/file/20200520/20200520110033_3610.html
    http://www.qdc.com/kindeditor/attached/file/20200520/20200520105913_4438.html
    http://www.qdc.com/kindeditor/attached/file/20200520/20200520105601_4069.html
    http://www.qdc.com/kindeditor/attached/file/20200520/20200520105754_4366.html
    http://www.qdc.com/kindeditor/attached/file/20200520/20200520105728_3882.html
    http://www.qdc.com/kindeditor/attached/file/20200520/20200520105621_6253.html
    http://www.qdc.com/kindeditor/attached/file/20200520/20200520105816_3886.html
    http://www.qdc.com/kindeditor/attached/file/20200520/20200520105801_4234.html
    http://www.qdc.com/kindeditor/attached/file/20200520/20200520110049_3684.html
    http://www.qdc.com/kindeditor/attached/file/20200520/20200520105546_3535.html
    http://www.qdc.com/kindeditor/attached/file/20200520/20200520105849_3375.html
    http://www.qdc.com/kindeditor/attached/file/20200520/20200520105736_4024.html
    http://www.qdc.com/kindeditor/attached/file/20200520/20200520110017_6563.html
    http://www.qdc.com/kindeditor/attached/file/20200520/20200520105904_3973.html
    http://www.qdc.com/kindeditor/attached/file/20200520/20200520105841_3352.html
    http://www.qdc.com/kindeditor/attached/file/20200520/20200520105744_4274.html
    http://www.qdc.com/kindeditor/attached/file/20200520/20200520105538_8550.html
    http://www.qdc.com/kindeditor/attached/file/20200520/20200520105857_3186.html
    http://www.qdc.com/kindeditor/attached/file/20200520/20200520105945_4449.html
    http://www.qdc.com/kindeditor/attached/file/20200520/20200520105641_4251.html
    http://www.qdc.com/kindeditor/attached/file/20200520/20200520105553_5204.html
    http://www.qdc.com/kindeditor/attached/file/20200520/20200520105657_4277.html
    http://www.qdc.com/kindeditor/attached/file/20200520/20200520105833_3492.html
    http://www.qdc.com/kindeditor/attached/file/20200520/20200520105611_4228.html
    http://www.qdc.com/kindeditor/attached/file/20200520/20200520105824_4419.html
    http://www.qdc.com/kindeditor/attached/file/20200520/20200520105808_4393.html
    http://www.qdc.com/kindeditor/attached/file/20200520/20200520105936_4661.html
    http://www.qdc.com/kindeditor/attached/file/20200520/20200520105920_4303.html
    http://www.qdc.com/kindeditor/attached/file/20200520/20200520105650_3511.html
    http://www.qdc.com/kindeditor/attached/file/20200520/20200520110025_3626.html
    http://www.qdc.com/kindeditor/attached/file/20200520/20200520110057_3663.html
    http://www.qdc.com/kindeditor/attached/file/20200520/20200520105713_4542.html
    http://www.qdc.com/kindeditor/attached/file/20200520/20200520110001_3949.html
    http://www.qdc.com/kindeditor/attached/file/20200520/20200520110113_3475.html
    http://www.qdc.com/kindeditor/attached/file/20200520/20200520105930_3911.html
    http://www.qdc.com/kindeditor/attached/file/20200520/20200520105721_4269.html
    http://www.qdc.com/kindeditor/attached/file/20200520/20200520110105_3861.html
    http://www.qdc.com/kindeditor/attached/file/20200520/20200520110009_3431.html
    http://www.qdc.com/kindeditor/attached/file/20200520/20200520105705_3277.html
    http://www.qdc.com/kindeditor/attached/file/20200520/20200520105634_8100.html
    http://www.qdc.com/kindeditor/attached/file/20200520/20200520105626_8096.html
    http://www.qdc.com/kindeditor/attached/file/20200520/20200520105953_3450.html
    http://www.scjkc.cn/uploadfile/file/20200520/20200520230021352135.html
    http://www.scjkc.cn/uploadfile/file/20200520/20200520225943854385.html
    http://www.scjkc.cn/uploadfile/file/20200520/20200520225726662666.html
    http://www.scjkc.cn/uploadfile/file/20200520/20200520225757355735.html
    http://www.scjkc.cn/uploadfile/file/20200520/20200520225826112611.html
    http://www.scjkc.cn/uploadfile/file/20200520/20200520225621282128.html
    http://www.scjkc.cn/uploadfile/file/20200520/20200520230036953695.html
    http://www.scjkc.cn/uploadfile/file/20200520/20200520225994789478.html
    http://www.scjkc.cn/uploadfile/file/20200520/20200520230019831983.html
    http://www.scjkc.cn/uploadfile/file/20200520/2020052023000728728.html
    http://www.scjkc.cn/uploadfile/file/20200520/20200520225682258225.html
    http://www.scjkc.cn/uploadfile/file/20200520/20200520225780798079.html
    http://www.scjkc.cn/uploadfile/file/20200520/20200520230171327132.html
    http://www.scjkc.cn/uploadfile/file/20200520/20200520225670977097.html
    http://www.scjkc.cn/uploadfile/file/20200520/20200520225741314131.html
    http://www.scjkc.cn/uploadfile/file/20200520/20200520225830743074.html
    http://www.scjkc.cn/uploadfile/file/20200520/20200520225838523852.html
    http://www.scjkc.cn/uploadfile/file/20200520/20200520225521152115.html
    http://www.scjkc.cn/uploadfile/file/20200520/20200520225629802980.html
    http://www.scjkc.cn/uploadfile/file/20200520/20200520225911941194.html
    http://www.scjkc.cn/uploadfile/file/20200520/20200520225650045004.html
    http://www.scjkc.cn/uploadfile/file/20200520/20200520230032273227.html
    http://www.scjkc.cn/uploadfile/file/20200520/2020052022570636636.html
    http://www.scjkc.cn/uploadfile/file/20200520/2020052022590421421.html
    http://www.scjkc.cn/uploadfile/file/20200520/20200520230016661666.html
    http://www.scjkc.cn/uploadfile/file/20200520/20200520225524292429.html
    http://www.scjkc.cn/uploadfile/file/20200520/20200520225896409640.html
    http://www.scjkc.cn/uploadfile/file/20200520/20200520225715151515.html
    http://www.scjkc.cn/uploadfile/file/20200520/20200520225775997599.html
    http://www.scjkc.cn/uploadfile/file/20200520/20200520225940714071.html
    http://www.scjkc.cn/uploadfile/file/20200520/20200520225890149014.html
    http://www.scjkc.cn/uploadfile/file/20200520/20200520225846354635.html
    http://www.scjkc.cn/uploadfile/file/20200520/20200520225512611261.html
    http://www.scjkc.cn/uploadfile/file/20200520/20200520225692299229.html
    http://www.scjkc.cn/uploadfile/file/20200520/20200520225677917791.html
    http://www.scjkc.cn/uploadfile/file/20200520/20200520225754205420.html
    http://www.scjkc.cn/uploadfile/file/20200520/20200520225637513751.html
    http://www.scjkc.cn/uploadfile/file/20200520/20200520230077637763.html
    http://www.scjkc.cn/uploadfile/file/20200520/20200520225929382938.html
    http://www.scjkc.cn/uploadfile/file/20200520/20200520230151035103.html
    http://www.scjkc.cn/uploadfile/file/20200520/20200520225994849484.html

猜你喜欢

转载自www.cnblogs.com/y7y457yrty/p/12934435.html
今日推荐