代码搜索:thing
找到约 1,477 项符合「thing」的源代码
代码结果 1,477
www.eeworm.com/read/283588/9003363
bmp thing.bmp
www.eeworm.com/read/357852/10200189
h thing.h
#ifndef THING_H_
#define THING_H_
class Thing {
public:
void set(int num, char c);
void increment();
void show();
private:
int m_Number;
char m_Character;
};
#endif
www.eeworm.com/read/357852/10200194
cpp thing.cpp
#include
#include "thing.h"
void Thing::set(int num, char c) {
m_Number = num;
m_Character = c;
}
void Thing::increment() {
++m_Number;
++m_Character;
}
void Thing::show
www.eeworm.com/read/357852/10200331
h thing.h
#ifndef THING_H_
#define THING_H_
#include
#include
using namespace std;
class Thing {
public:
Thing(int n) : m_Num(n) {
}
~Thing() {
cout
www.eeworm.com/read/463316/7183272
dat thing.dat
www.eeworm.com/read/443222/7636094