C++
Master_Chelif
这个作者很懒,什么都没留下…
展开
-
C++ 类的栈和堆实例化
#include "stdafx.h"#include using namespace std;class Coordnate{public: Coordnate(); ~Coordnate(); int x; int y; void printX() { cout << x << endl; } void printY() { cout << y << en原创 2017-01-09 14:33:29 · 1752 阅读 · 0 评论 -
C++ 类的数据成员封装
#include "stdafx.h"#include #include using namespace std;/*** 定义类:Student* 数据成员:m_strName* 数据成员的封装函数:setName()、getName()*/class Student{public: // 定义数据成员封装函数setName() void setName(string原创 2017-01-09 15:37:43 · 1475 阅读 · 0 评论 -
C++模板
1.函数模板作用:实现不同数据类型的函数调用调用:自动匹配数据类型进行调用#include "stdafx.h"#include <iostream>using namespace std;template<class T>void Swap(T &x, T &y){ T temp = x; x = y; y = temp;}template<class T1原创 2017-02-14 10:26:50 · 320 阅读 · 0 评论 -
Qt--02:设置父对象
问题引入:在Widget中创建Button等控件时,如果不指定Button等控件的父对象,就会产生相关控件无法再此Widget窗口中显示。因此当一些控件需要在当前Widget窗口中显示的时候就需要为控件添加父对象。指定父对象方式 setParent(&w)通过构造函数传参 Note:指定父对象之后,父对象显示,子对象将自动显示 代码展示int main(int argc, char原创 2017-04-10 19:53:12 · 4998 阅读 · 1 评论 -
Some Tips About C++
Some Tips About C++原创 2017-01-11 09:10:09 · 285 阅读 · 0 评论 -
友元相关
作用:其他类或者函数要访问该类的非公有成员,可以令其他类或者函数成为它的友元(friend)来实现。弊端:类实现封装和隐藏,友元破坏封装和隐藏。可以修改类中私有数据。注意事项 3.1 友元关系不可传递 3.2 友元关系的单向性 3.3 形式和数量没有特别限制友元函数 // 友元.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include <i原创 2017-08-14 16:20:57 · 247 阅读 · 0 评论 -
五种经典排序算法的实现(冒泡、归并、快排、堆排序、希尔)
#include <iostream>using namespace std;void swap(int &d,int& b){ int temp; temp=d; d=b; b=temp;}//冒泡排序void Bubblesort(int arry[],int len){ int i,j; for(i=0;i<len-1;i++)转载 2017-08-14 16:56:48 · 284 阅读 · 0 评论 -
常用容器思维导图(未完待续)
总结关于容器的相关知识,未完待续原创 2017-08-21 20:57:25 · 1332 阅读 · 0 评论