代码搜索:MyString

找到约 1,391 项符合「MyString」的源代码

代码结果 1,391
www.eeworm.com/read/175226/9554934

hpp mystring.hpp

// Listing 16.1 The String Class #include #include using namespace std; class String { public: // constructors String(); String(const char *const);
www.eeworm.com/read/365754/9849630

h mystring.h

#pragma once const int STRING_SIZE=0x40; class mystring { public: mystring(void); mystring(const char); mystring(const char *str); int at(int pos); void fromDouble(double doubleVal); v
www.eeworm.com/read/365754/9849653

cpp mystring.cpp

#include "stdafx.h" #include "mystring.h" #include #include mystring::mystring(void) { this->clear(); } mystring::mystring(const char *instr) { strcpy(this->str,instr);
www.eeworm.com/read/365754/9849659

obj mystring.obj

www.eeworm.com/read/365754/9849665

sbr mystring.sbr

www.eeworm.com/read/166806/9997312

cpp mystring.cpp

//MyString.cpp--类的实现文件 #include "MyString.h" CMyString::CMyString() { m_len=0; m_size=0; m_pstr=NULL; } CMyString::~CMyString() { } CMyString::CMyString(char *str) { if(s
www.eeworm.com/read/166806/9997314

h mystring.h

//MyString.h-类定义文件 #ifndef __MYSTRING_H__ #define __MYSTRING_H__ #include #include class CMyString { public: CMyString(); //无参构造函数 virtual ~CMySt
www.eeworm.com/read/359819/10123318

cpp mystring.cpp

/* // // INTEL CORPORATION PROPRIETARY INFORMATION // This software is supplied under the terms of a license agreement or // nondisclosure agreement with Intel Corporation and may
www.eeworm.com/read/359819/10123323

h mystring.h

/* // // INTEL CORPORATION PROPRIETARY INFORMATION // This software is supplied under the terms of a license agreement or // nondisclosure agreement with Intel Corporation and may
www.eeworm.com/read/280448/10328797

h mystring.h

#ifndef _MYSTRING_H #define CN_RES //#define EN_RES #ifdef CN_RES #include "cn_res.h" #elif defined EN_RES #include "en_res.h" #endif #endif