代码搜索:oop
找到约 459 项符合「oop」的源代码
代码结果 459
www.eeworm.com/read/377281/9283195
txt -+-+.txt
目 录
译者序
前言
第1章 对象的演化 1
1.1 基本概念 1
1.1.1 对象:特性+行为 1
1.1.2 继承:类型关系 1
1.1.3 多态性 2
1.1.4 操作概念:OOP程序像什么 3
1.2 为什么C++会成功 3
1.2.1 较好的C 3
1.2.2 采用渐进的学习方式 4
1.2.3 运行效率 4
1
www.eeworm.com/read/357852/10200153
cc stl-map.cc
// STL-map.cc
#include
#include
#include
using namespace std;
int main() {
map nameAge;
nameAge["Duck,Donald"] = 7;
nameAge["Mouse,Mickey"] = 39;
www.eeworm.com/read/357852/10200154
cc stl-find.cc
// Filename: STL-find.cc
// Use of the find function.
#include
#include
#include
using namespace std;
int main() {
string words[5] = {
"m
www.eeworm.com/read/357852/10200299
cpp vect1test.cpp
#include "vect1.h"
int main() {
Vect a(60), b[20];
b[1][5] = 7;
cout
www.eeworm.com/read/357852/10200345
cpp pointerdemo.cpp
// Filename pointerdemo.cpp
#include
using namespace std;
int main() {
int x = 4;
int* px = 0 ; /* type modifier */
px = &x;
cout
www.eeworm.com/read/295859/8136586
txt -+-+.txt
目 录
译者序
前言
第1章 对象的演化 1
1.1 基本概念 1
1.1.1 对象:特性+行为 1
1.1.2 继承:类型关系 1
1.1.3 多态性 2
1.1.4 操作概念:OOP程序像什么 3
1.2 为什么C++会成功 3
1.2.1 较好的C 3
1.2.2 采用渐进的学习方式 4
1.2.3 运行效率 4
1
www.eeworm.com/read/302634/13830528
java puzzleh1.java
package mypuzzle;
/**
* Title: 8 puzzle
*
* Description: a solution of a*
*
* Copyright: Copyright (c) 2006
*
* Company: hitsz
*
* @author yangyi
*
www.eeworm.com/read/302634/13830535
java~2~ puzzleh1.java~2~
package mypuzzle;
/**
* Title: 8 puzzle
*
* Description: a solution of a*
*
* Copyright: Copyright (c) 2006
*
* Company: hitsz
*
* @author yangyi
*
www.eeworm.com/read/302634/13830536
java~3~ puzzleh1.java~3~
package mypuzzle;
/**
* Title: 8 puzzle
*
* Description: a solution of a*
*
* Copyright: Copyright (c) 2006
*
* Company: hitsz
*
* @author yangyi
*