代码搜索:MyString
找到约 1,391 项符合「MyString」的源代码
代码结果 1,391
www.eeworm.com/read/435150/7796235
h mystring.h
// Exercise 14.5 MyString.h
// Definition of the MyString class representing strings
#ifndef MYSTRING_H
#define MYSTRING_H
namespace mySpace {
class MyString {
public:
MyString();
www.eeworm.com/read/435150/7796283
cpp mystring.cpp
// Exercise 13.4 MyString.cpp
// Definitions for member of the MyString class
#include "MyString.h"
#include
#include
using std::cout;
using std::endl;
namespace mySpac
www.eeworm.com/read/435150/7796285
h mystring.h
// Exercise 13.4 MyString.h
// Definition of the MyString class representing strings
#ifndef MYSTRING_H
#define MYSTRING_H
namespace mySpace {
class MyString {
public:
MyString();
www.eeworm.com/read/121876/7809960
h mystring.h
//**********************************************************************************
//杨屹 2002/08/20 第一版
//字符串操作函数
//联系方法:gdtyy@ri.gdt.com.cn(2003/07/31以前有效)
//******************************
www.eeworm.com/read/121876/7809963
c mystring.c
//**********************************************************************************
//杨屹 2002/08/20 第一版
//字符串操作函数
//联系方法:gdtyy@ri.gdt.com.cn(2003/07/31以前有效)
//******************************
www.eeworm.com/read/299123/7887301
h mystring.h
//**********************************************************************************
//杨屹 2002/08/20 第一版
//字符串操作函数
//联系方法:gdtyy@ri.gdt.com.cn(2003/07/31以前有效)
//******************************
www.eeworm.com/read/299123/7887312
c mystring.c
//**********************************************************************************
//杨屹 2002/08/20 第一版
//字符串操作函数
//联系方法:gdtyy@ri.gdt.com.cn(2003/07/31以前有效)
//******************************
www.eeworm.com/read/246960/12695540
h mystring.h
//**********************************************************************************
//杨屹 2002/08/20 第一版
//字符串操作函数
//联系方法:gdtyy@ri.gdt.com.cn(2003/07/31以前有效)
//******************************
www.eeworm.com/read/246960/12695553
c mystring.c
//**********************************************************************************
//杨屹 2002/08/20 第一版
//字符串操作函数
//联系方法:gdtyy@ri.gdt.com.cn(2003/07/31以前有效)
//******************************
www.eeworm.com/read/332813/12726399
h mystring.h
#include
#include
// Extremely simple string class
class String {
public:
String() {s = new char [1]; s[0] = 0;}
String(char *_s) {s = new char [1]; s[0] = 0;