C++
鼎鼎大名的浪子
这个作者很懒,什么都没留下…
展开
-
C++动态类型与静态类型
静态类型编译时的类型,运行前就确定了,是变量声明时的类型或表达式生成的类型动态类型运行时才确定的类型,是变量或表达式表示的内存中的对象的类型Quote* p = new b_Quote; // Quote 是基类,b_Quote 是子类指针 p 的静态类型是 Quote,在编译时已经确定了,但它的动态类型是 b_Quote,运行时才知道举例Bulk_quote bulk;Quo...转载 2020-03-17 15:11:58 · 4009 阅读 · 1 评论 -
C++类的静态成员变量
#include<iostream>using namespace std;class Rect {public: Rect() { count++; } ~Rect() { count--; } static int getCount() { // 静态成员函数 return count; }private: int width; int le...原创 2020-03-13 17:24:41 · 796 阅读 · 0 评论