hello world

来源:互联网 发布:mac版国服lol 编辑:程序博客网 时间:2024/06/06 03:23
#include <iostream>class Print{public:  template <typename _type >  Print(_type val)  {    std::cout << val << std::endl;  }};int main(){  Print("Hello world!");  Print(123);  return 0;}

纯粹是好玩

0 0