代码搜索:MyString
找到约 1,391 项符合「MyString」的源代码
代码结果 1,391
www.eeworm.com/read/365754/9849652
sln cecalc.sln
Microsoft Visual Studio Solution File, Format Version 10.00
# Visual Studio 2008
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{DE1D74E4-2412-45F7-A2A5-
www.eeworm.com/read/169489/9857808
pas unit1.pas
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, Winsock;
type
PIPOptionInformation = ^TIPOptionInformation;
TIPO
www.eeworm.com/read/169281/9870332
cpp local.cpp
/*
Bug in MIDL: Comment out the three references to _maxcount_test in the component_p.c file
*/
// local.cpp
#define _WIN32_DCOM
#include
#include // For cout
#incl
www.eeworm.com/read/363888/9933363
cpp memtest.cpp
//: C07:MemTest.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
// Testing the Mem class
//{L} Mem
www.eeworm.com/read/416348/10002204
cpp ep6_3.cpp
/*6.3 使用自定义字符串类,编写求数组元素中最大值的函数模板。*/
//使用独立的函数模板
#include
using namespace std;
const int n=256;
class mystring{//为简单只保留用到的函数
char str[n]; //存放字符串的数组容器
int maxsize; /
www.eeworm.com/read/416348/10002216
cpp ep6_4_0.cpp
/* 6.4 将自定义字符串类用于对半查找的函数模板。*/
//使用成员函数
#include
using namespace std;
const int n=256;
class mystring{//为简单只保留用到的函数
char str[n]; //存放字符串的数组容器
int maxsize; //最大可用元素数,
www.eeworm.com/read/416348/10002224
cpp ep6_4.cpp
/*6.4 将自定义字符串类用于对半查找的函数模板。*/
//采用独立的函数模板
#include
using namespace std;
const int n=256;
class mystring{//为简单只保留用到的函数
char str[n]; //存放字符串的数组容器
int maxsize; //最大可用元素
www.eeworm.com/read/416348/10002732
cpp ep5_12.cpp
/*5.12 将习题5.8中的字符串处理函数移植到mystring类中,其中strcat已重载为+运算符,
请将其它4个转为成员函数。对比成员函数与独立函数构造上有何不同?*/
#include
using namespace std;
const int n=256;
class mystring{
char str[n]; //存放字符串的数组