代码搜索:cstring

找到约 10,000 项符合「cstring」的源代码

代码结果 10,000
www.eeworm.com/read/421271/10745712

cpp myfolder.cpp

#include "stdafx.h" #include ".\myfolder.h" CMyFolder::CMyFolder(void) { } CMyFolder::~CMyFolder(void) { } CMyFolder::CMyFolder(HTREEITEM hi, CString strNodeId, CString strName, CString
www.eeworm.com/read/485044/6571444

cpp hexreader.cpp

#include "stdafx.h" #include "stdio.h" extern CString szIniFileName; extern CString szDownLoadFileName; extern CStringArray szIniFileBuff; CString szIniDownLoadFile; UINT uiSeekPos; UINT Ch
www.eeworm.com/read/482399/6624225

cpp cata2.cpp

#include #include #include using namespace std; class cstring { private: string str; string resi; public: cstring(){} cstring(string x) { str=x; }
www.eeworm.com/read/100012/15889895

h readfileevent.h

class ReadFileEvent: public TraceEvent { public: ReadFileEvent(CString s, HANDLE hv, DWORD BytesToRead); virtual CString display(); virtual LRESULT execute(); virtual CString display_r
www.eeworm.com/read/148430/12467317

cpp mystring.cpp

#include #include #include #include "MyString.h" CString::CString():_data(0) { _data=new char[1]; _data[0]='\0'; } CString::CString(const char *str):_data(0) {
www.eeworm.com/read/402612/11531782

h commonfunc.h

#pragma once //! 将一个CString类型字符串转换为整数 int StrToInt(CString str); //! 将一个CString类型字符串转换为浮点数 double StrToDouble(CString str); //! 从一个CString类型字符串获取年、月、日信息 void StrToDay(const CString& str, int&
www.eeworm.com/read/118454/14869455

prg test_dowhile.prg

******程序功能:将非汉字字符组成的字符串反序显示(例如将Microsoft显示为tfosorciM) CLEAR cString="DO WHILE ... ENDDO Command" cResult=cString+"的反序显示为" DO WHILE LEN(cString)>0 cResult=cResult+RIGHT(cString,1) cString=SUBST
www.eeworm.com/read/232927/14177238

cpp generaldef.cpp

#include "stdafx.h" #include "GeneralDef.h" CAdoDB adoDB; CString Int2Str(int num) { CString temp ; temp.Format("%d",num); return temp; } CString float2Str(float num) { CString te
www.eeworm.com/read/431734/8657706

h ljb1.h

/*typedef struct Cezhand { CString dxdian; CString czdian; bool isknow; bool isjd; int du; }Czd*; typedef struct zhaozhund { CString dianhao; double jiaodu; }zzd*; */ class CLjbiao
www.eeworm.com/read/175578/9540870

h addrlist.h

//addrlist.h class CAddrlist : public CObject { public: DECLARE_SERIAL(CAddrlist) CString Name; CString Address; CString Tel; CTime Birth; CAddrlist(); virtual void Ser