1. 代码及问题 #include <iostream> using namespace std; class A { public: A() {} //A *p = new A()时:此时A须写成A() {} void hello() { std::cout << "hello" << std::endl; } }; int main() { A *p = new A(); p = NULL; p->hello(); //空类指针为什么可以调…
C++中的空类,编译器默认可以产生哪些成员函数 C++中创建一个空类:class Empty {};默认会生成4个函数,其函数的原型如下: public: Empty() { ... } Empty(const Empty& rhs) { ... } ~Empty() { ... } Empty& operator=(const Empty& rhs) { ... } 说明:1) 这些函数只有在需要调用的时候,编译器才会生成. 2) 4个函数都是public的. 3) 4个函数都是…
下面讨论的都是类的非静态成员函数. 类成员函数指针的声明及调用: 1 2 3 4 5 6 7 //pr是指向Base类里的非静态成员函数的指针 //其行参为(int, int),返回值为void void (Base::*pr)(int, int);   //需通过对象调用 //object是Base类的一个对象或指针(可多态) ( object->*pr)( _r, _c) 而其实质和普通的指针也有区别: //下面是隐藏的代码是相关类型的定义 1 2 3 4 5 6 7 8 9 10 11 1…
在c++中,我们可以用const来定义一个const对象,const对象是不可以调用类中的非const成员函数,这是为什么呢?下面是我总结的一些原理. 假设有一个类,名字为test代码如下: class test{ int i; public: void print(); test(int i); }; 我们知道c++在类的成员函数中还会隐式传入一个指向当前对象的this指针,所以在test类中,实际的print函数应该是这样的void print(test * this);,这代表一个指向te…
举个例子: 定义了一个类的const实例,怎么让他也能调用非能调用非const成员函数class foo{public:void test1() {cout << "I am not a const member function" << endl;}void test2()const {foo *temp = (foo*)this;//注意这个转换!!!temp->test1();}}; int main() {foo f;f.test2();retur…
boost::serialization 也支持c++的多态,这样我们就能够通过使用基类的指针来转存派生类, 我们接着上一篇( boost::serialization(2)序列化基类 )的样例来看: 基类和派生类的代码例如以下: class student_info { public: student_info() {} virtual ~student_info() {} student_info(const std::string& sn, const std::string& sn…
工作中使用到多进程通信,利用到了map以及multimap来进行实现. 需要做一个简单测试例子,直接上代码. /* * main.cpp * Created on: Oct 28, 2013 * Author: Sam.Nie */ #include <stdio.h> #include <stdlib.h> #include <string> #include <map> #include <iostream> using namespace…
class Empty {     public:     Empty(); // 缺省构造函数     Empty( const Empty& ); // 拷贝构造函数     ~Empty(); // 析构函数     Empty& operator=( const Empty& ); // 赋值运算符     Empty* operator&(); // 取址运算符     const Empty* operator&() const; // 取址运算符 co…
class A: def a(self): print("hello world") def b(self): return self.a() 上面的self.a()中self是不可缺少的,否则找不到a()的定义,这是和C++/C语言所不同的.…
习惯了函数式,动不动传一个函数.但是直接把函数作为类方法保存,再调用时会报错. 举一个unittest时的例子 class MyTestCase(unittest.TestCase): @classmethod def setUpClass(cls): print('测试\n') .... factory = make_factory(XXX) #非绑定函数必须这样用staticmethod()包装 #cls.factory = staticmethod(factory) cls.factory…