摘要:
1 .hpp 2 #pragma once 3 #include<iostream> 4 #include<vector> 5 #include<string> 6 #include<algorithm> 7 #include<numeric> 8 #include<iomanip> 9 using 阅读全文
摘要:
task1 task1问题一:定义了两个类 Button和window.使用了标准的两个类 string和vector。问题二: 剩下的函数主要是一些负责输出结果的函数,它们在输出的过程中不会改变对象的值,所以我觉得没有必要加const,当然它们属于简单的输出语句可以设计成内联函数.问题三:定义一个 阅读全文
摘要:
1 t.h 2 #pragma once 3 #include<string> 4 using namespace std; 5 class T { 6 7 public: 8 T(int x = 0, int y = 0); 9 T(const T& t); 10 T(T&& t); 11 ~T( 阅读全文