引入計數類

2021-06-03 21:42:46 字數 2013 閱讀 2329

// mycounter.h: inte***ce for the cmycounter class.

////

#if !defined(afx_mycounter_h__24061f41_4dbf_486d_bc26_f77fdc519fc6__included_)

#define afx_mycounter_h__24061f41_4dbf_486d_bc26_f77fdc519fc6__included_

#if _msc_ver > 1000

#pragma once

#endif // _msc_ver > 1000

#include "stdafx.h"

class cmycounter  

;#endif // !defined(afx_mycounter_h__24061f41_4dbf_486d_bc26_f77fdc519fc6__included_)

// mycounter.cpp: implementation of the cmycounter class.

////

#include "stdafx.h"

#include "mycounter.h"

//// construction/destruction

//cmycounter::cmycounter()

cmycounter::~cmycounter()

cmycounter::cmycounter(const char *lpstr)

void cmycounter::init()

void cmycounter::release()

else

}size_t cmycounter::addcounter()

size_t cmycounter::deccounter()

const char* cmycounter::getstring() const

// mystring.h: inte***ce for the cmystring class.

////

#if !defined(afx_mystring_h__5be039e4_d686_43cd_b864_ca6202377ff3__included_)

#define afx_mystring_h__5be039e4_d686_43cd_b864_ca6202377ff3__included_

#if _msc_ver > 1000

#pragma once

#endif // _msc_ver > 1000

#include "mycounter.h"

class cmystring  

;#endif // !defined(afx_mystring_h__5be039e4_d686_43cd_b864_ca6202377ff3__included_)

// mystring.cpp: implementation of the cmystring class.

////

#include "stdafx.h"

#include "mystring.h"

//// construction/destruction

//cmystring::cmystring()

cmystring::~cmystring()

cmystring::cmystring(const cmystring& obj)

cmystring::cmystring(const char* lpstr)

cmystring::cmystring(const cmystring* obj)

const char* cmystring::getstring() const

size_t  cmystring::addcounter()

void cmystring::init()

size_t cmystring::deccounter()

void cmystring::release()

else

此處略去main函式無數行

控制代碼類二(計數抽象為計數類)

include using namespace std class point point int x,int y xval x yval y int x int y point x int x point y int y class usecount usecount const usecount...

php 引入類 php如何在乙個類中引入另外乙個類

有時候需要在乙個類中呼叫另外乙個類裡面的方法,然後另外乙個類又需要呼叫當前類的方法,怎麼辦呢?可以直接引入類物件的方式呼叫另外乙個類的方法 示例如下 傳值方式 class a function b obj obj test class b function test echo test a new ...

01 c 類的引入

在c中檔案的字尾名為.c,在c 中檔案的字尾名為.cpp 在c語言中,結構體中不能實現函式,只能定義函式指標,比如 struct person 在c 中,結構體中可以實現函式,並且在結構體中的函式可以直接訪問該結構體中的成員變數 struct person 在c 中對結構體做了2個擴充套件 1,在結...