代码搜索:String
找到约 10,000 项符合「String」的源代码
代码结果 10,000
www.eeworm.com/read/161929/10356654
h string.h
//String.h
#ifndef String_H
#define String_H
const int MaxSize=100; //100只是示例性的数据,可以根据实际问题具体定义
template //定义模板类SeqList
class String
{
public:
String( ); //无参构造函数
S
www.eeworm.com/read/161929/10356658
dsw string.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
www.eeworm.com/read/161929/10356661
dsp string.dsp
# Microsoft Developer Studio Project File - Name="String" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Co
www.eeworm.com/read/161929/10356669
cpp string.cpp
//String.cpp
#include "String.h"
/*
*前置条件:串不存在
*输 入:无
*功 能:构建一个串
*输 出:无
*后置条件:构建一个串
*/
template
String:: String( )
{
data[0]="0";
length=0;
}
/*
*前置条件:串不存在
www.eeworm.com/read/280060/10357728
h string.h
/* string.h
Definitions for memory and string functions.
Copyright (c) 1987, 1992 by Borland International
All Rights Reserved.
*/
#ifndef __STRING_H
#define __STRING_H
#if
www.eeworm.com/read/354342/10362382
c string.c
/*
* linux/lib/string.c
*
* (C) 1991 Linus Torvalds
*/
#ifndef __GNUC__
#error I want gcc!
#endif
#define extern
#define inline
#define __LIBRARY__
#include
www.eeworm.com/read/354342/10362554
h string.h
#ifndef _STRING_H_
#define _STRING_H_
#ifndef NULL
#define NULL ((void *) 0)
#endif
#ifndef _SIZE_T
#define _SIZE_T
typedef unsigned int size_t;
#endif
extern char * strerror(int errno);
/*
* Thi
www.eeworm.com/read/161837/10366600
h string.h
//String.h
#ifndef String_H
#define String_H
const int MaxSize=100; //100只是示例性的数据,可以根据实际问题具体定义
template //定义模板类SeqList
class String
{
public:
String( ); //无参构造函数
S
www.eeworm.com/read/161837/10366602
dsw string.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################