cpp的内存分区

栈区:int x =0; int *p = NULL//平时写的变量都是在栈区 堆区: int *p= new int[20] //new出的变量储存在堆区,必须是用delete回收 全局区: 储存全局变量及静态常量 常量区: string str = "hello";//储存字符串和常量 代码区 …

cpp封装

同文件类外定义class Car{ public: void run(); void stop; } void Car::run(){} void Car::stop(){} 分文件类外定义 首先定义.h头文件 在头文件中声明所有的成员变量和所有的成员函数. 在类文件中#include "定义的文件…

javascript whatever day

javascript更新DOM: document.getElementById(''id').innerHTML="..." 替换html中的内容. 增加DOM: appendChild,insertBefore 元素: 元素