代码搜索:String

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

代码结果 10,000
www.eeworm.com/read/227241/14436294

in conf.jsf.in

# JOE syntax highlight file for typical UNIX configuration files =Idle =Comment green =String cyan =Escape bold cyan :idle Idle * idle "#" comment recolor=-1 "\"" string recolor=-1 "'"
www.eeworm.com/read/225747/14518124

l boa_lexer.l

%{ /* * Boa, an http server * Copyright (C) 1995 Paul Phillips * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General
www.eeworm.com/read/119982/14814730

cpp over_pls.cpp

#include #include #include class String { public: char *operator +(char *append_str) { return(strcat(buffer, append_str)); }; char
www.eeworm.com/read/119982/14814848

cpp str_plus.cpp

#include #include #include class String { public: char *operator +(char *append_str) { return(strcat(buffer, append_str)); }; String(
www.eeworm.com/read/119273/14835024

cpp xstring.cpp

// Borland C++ - (C) Copyright 1991 by Borland International //XSTRING.CPP--Example from Getting Started */ // version of STRING.CPP with overloaded operator + #include #include
www.eeworm.com/read/219945/14858396

c substr.c

/* function to get the length of a string */ int length(string) char string[ ] ; { int index = 0 ; while (string[index] != '\0' ) index ++ ; return (index); } /* fu
www.eeworm.com/read/114134/15075244

java action_part.java

package java_cup; /** * This class represents a part of a production which contains an * action. These are eventually eliminated from productions and converted * to trailing actions by factorin
www.eeworm.com/read/212063/15166404

cpp main.cpp

#include "../../C/UTILITY.H" #include "../../C/UTILITY.CPP" #include "../DOUBLY/LIST.H" #include "../DOUBLY/LIST.CPP" #include #include "STRING.H" #include "STRING.CPP" void
www.eeworm.com/read/208576/15243854

cpp fig08_21.cpp

// Fig. 8.21: fig08_21.cpp // Copying a string using array notation and pointer notation. #include using std::cout; using std::endl; void copy1( char *, const char * ); // prototype
www.eeworm.com/read/206867/15286702

cpp over_pls.cpp

#include #include #include class String { public: char *operator +(char *append_str) { return(strcat(buffer, append_str)); }; char