代码搜索:OOP
找到约 459 项符合「OOP」的源代码
代码结果 459
www.eeworm.com/read/109329/15559026
dws oop$oop.dws
www.eeworm.com/read/109329/15559030
dws oop$oop2.dws
www.eeworm.com/read/391067/8423606
txt oop.txt
--------------------------------------------------------------------------------
发帖者:huyongzs 讨论区:编程讨论推荐区
标
www.eeworm.com/read/426112/10285914
ldb oop.ldb
www.eeworm.com/read/426112/10285943
mdb oop.mdb
www.eeworm.com/read/423316/10570391
htm oop.htm
Object Oriented Programming
Object Oriented Programming
A library for data structures and object oriented programming is available for
S
www.eeworm.com/read/423316/10570422
sf oop.sf
\ Copyright (C) 2008 Stephan Becher
\
\ This file is part of StrongForth.f.
\
\ StrongForth.f is free software; you can redistribute it and/or modify
\ it under the terms of the GNU General Publi
www.eeworm.com/read/349896/10792687
h oop.h
//OOP.h
#include "Afxtempl.h"
struct Merchandise //商品类
{
UINT m_uID ;//商品ID,模拟条形码
};
class CMerchandiseContainer//商品容器,存放商品的地方,如仓库,柜台
{
public:
Merchandise* MoveMerchandiseOut(UINT uID)
www.eeworm.com/read/349896/10792692
cpp oop.cpp
//OOP.cpp
#include "stdafx.h"
#include "oop.h"
bool CMerchandiseContainer::AddMerchandise(Merchandise &merch)
{
Merchandise * pMerch = new Merchandise ;
*pMerch = merch ;
m_Merchs.Add(pMer