代码搜索:String
找到约 10,000 项符合「String」的源代码
代码结果 10,000
www.eeworm.com/read/206867/15286718
cpp over_inc.cpp
// This file will not compile under TCLite because it does not support
// dual-overloaded increment operators
#include
#include
#include
class String
{
www.eeworm.com/read/161438/5553144
cpp over_dec.cpp
// This file will not compile under TCLite because it does not support
// dual-overloaded decrement operators
#include
#include
#include
class String
{
www.eeworm.com/read/161438/5553169
cpp over_inc.cpp
// This file will not compile under TCLite because it does not support
// dual-overloaded increment operators
#include
#include
#include
class String
{
www.eeworm.com/read/171829/9734263
cpp over_dec.cpp
// This file will not compile under TCLite because it does not support
// dual-overloaded decrement operators
#include
#include
#include
class String
{
www.eeworm.com/read/171829/9734301
cpp over_inc.cpp
// This file will not compile under TCLite because it does not support
// dual-overloaded increment operators
#include
#include
#include
class String
{
www.eeworm.com/read/113029/15472043
cpp fig18_29.cpp
// Fig. 18.29: fig18_29.cpp
// Using strcspn.
#include
using std::cout;
using std::endl;
#include // strcspn prototype
int main()
{
const char *string1 = "The va
www.eeworm.com/read/113029/15472051
cpp fig18_33.cpp
// Fig. 18.33: fig18_33.cpp
// Using strstr.
#include
using std::cout;
using std::endl;
#include // strstr prototype
int main()
{
const char *string1 = "abcdefab
www.eeworm.com/read/109099/15563793
cpp cpp07.cpp
// Coded by plusir -- Jan.07.2003.
// Standard C++ Bible -- (P371-12-7)
#include
#include
using namespace std ;
class String
{
public:
String( char *s = NULL )
www.eeworm.com/read/103333/15736678
cpp strminus.cpp
#include
#include
#include
class String {
public:
char *operator +(char *append_str)
{ return(strcat(buffer, append_str)); };
char *o