在线笔记
全部博文(596)
发布时间:2016-02-23 14:50:37
程序运行的时候,需要内存空间存放数据。一般来说,系统会划分出两种不同的内存空间:一种叫做stack(栈),另一种叫做heap(堆)。区别:stack是有结构的,每个区块按照一定次序存放,可以明确知道每个区块的大小(先入后出);heap是没有结构的,数据可以任意存放。因此,stack的寻址速度要快于heap。每个线程分配.........【阅读全文】
发布时间:2014-12-10 10:41:28
1. //基数student的析构函数不是vi#include <iostream>#include <stdio.h>using namespace std;class student{public: student(){ printf("%s co.........【阅读全文】
发布时间:2014-12-02 11:19:32
#include using namespace std;class Student{public: void Register()const { m_register = true; }private:.........【阅读全文】