代码搜索:String
找到约 10,000 项符合「String」的源代码
代码结果 10,000
www.eeworm.com/read/145471/5745901
h string.h
#ifndef _LINUX_STRING_H_
#define _LINUX_STRING_H_
#include /* for size_t */
#ifndef NULL
#define NULL ((void *) 0)
#endif
/*
* This string-include defines all string functions as i
www.eeworm.com/read/144212/5753045
bash string.bash
# string.bash --- bash emulation of string(3) library routines
# Author: Noah Friedman
# Created: 1992-07-01
# Last modified: 1993-09-29
# Public domain
# Conversion to bas
www.eeworm.com/read/144073/5753341
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/144073/5753342
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/144073/5753343
plg string.plg
Build Log
--------------------Configuration: string - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\DOCUME~1\孙怡\LOC
www.eeworm.com/read/144073/5753344
cpp string.cpp
#include
int exchange(char *&a,char *&b)
{
char *temp;
temp=a;a=b;b=temp;
return 0;
}
int main()
{
char *ap="hello!";
char *bp="how are you!";
cout
www.eeworm.com/read/144073/5753356
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/144073/5753357
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/144073/5753358
plg string.plg
Build Log
--------------------Configuration: string - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\DOCUME~1\孙怡\LOC
www.eeworm.com/read/144073/5753359
cpp string.cpp
#include
#include
/////////////////////////////////////
class str //STR类的定义
{
private:
char* content; //串中的内容
int length; //串的长度
public:
str(cha