C++
小饼干超人
这个作者很懒,什么都没留下…
展开
-
C++ 类和面向对象编程
创建一个类#include <iostream>#include <string>class Dog{ std::string name; int weight;public: Dog(); void setName(const std::string& dogsName); void setWeight(int ...转载 2019-03-30 12:43:25 · 117 阅读 · 0 评论 -
C++ 元组
// 创建元组的方法// Packing values into tupleauto first = make_tuple(10, 'A');const int maxN = 1e9;const int maxL = 15;auto second = make_tuple(maxN, maxL);cout << get<0>(first) << " ...转载 2019-03-30 13:44:46 · 367 阅读 · 0 评论