K12教育赛事综合服务平台
聚乐之家官方网站
下载聚乐之家官方App
专注青少年竞赛题库网站
#include <iostream> #include <string> using namespace std; template <typename T> struct TestStruct { T data; void show() { cout << data << endl; } }; int main() { // 此处插入选项代码片段 }
TestStruct s; s.data = 10; s.show();
TestStruct<int> si; si.data = 100; si.show();
TestStruct<double> td; TestStruct<double>::show();
TestStruct<string> ts; show();