to release the source code:
1. Box.h
#ifndef BOX_H
#define BOX_H
using namespace std;
class Box {
protected:
int fMax;
static Box* pfSingletonInstance;
public:
Box(int max);
~Box();
public:
void setMax(int i);
int getMax(void) const ;
static Box* GetSingletonInstance(void);
};
#endif
2. Box.cpp
#include "Box.h"
#define NULL 0
using namespace std;
Box * Box::pfSingletonInstance = NULL;
Box::Box(int max){
fMax = max;
if(pfSingletonInstance == 0){
pfSingletonInstance = this;
}
}
Box::~Box(){
pfSingletonInstance = NULL;
}
void Box::setMax(int i){
fMax = i;
}
int Box::getMax() const {
return fMax;
}
Box* Box::GetSingletonInstance(){
if(pfSingletonInstance == NULL){
//error
//std::cout<<"Box::GetSingletonInstance [pfSingletonInstance = NULL]"<<std::endl;
}
return pfSingletonInstance;
}
3. Test.cpp
#include "Box.h"
#include <iostream>
using namespace std;
int main(){
Box* b = new Box(100);
b->setMax(900);
std::cout<<b->getMax()<<std::endl;
Box* b2 = Box::GetSingletonInstance();
std::cout<<b2->getMax()<<std::endl;
}
4. to run:
Administrator@g-laptop /cygdrive/e/cprogramming/workspace/cpp
$ ./hello
900
900
本文介绍了一种使用C++实现单例模式的方法,并通过一个具体的Box类来演示如何确保整个程序中只有一个实例存在,并提供全局访问点。该示例包括了Box类的定义、构造与析构函数、设置与获取最大值的方法以及获取单例实例的静态方法。
152

被折叠的 条评论
为什么被折叠?



