代码搜索:String
找到约 10,000 项符合「String」的源代码
代码结果 10,000
www.eeworm.com/read/347848/11632792
java inputexample.java
import java.util.Scanner;
import java.util.StringTokenizer;
public class InputExample
{
public static void main(String[] args)
{
Scanner keyboard = new Scanner(System.in);
www.eeworm.com/read/346512/11740453
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/156873/11758188
java stringdemo.java
public class StringDemo
{
public static void main(String args[])
{
String String1="I Love Tsinghua"; //赋值字符串
String String2="University";
String String3=String1+" "+String2
www.eeworm.com/read/258843/11838456
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/155858/11842774
cpp 4elist1311.cpp
//Listing 13.11 Using strncpy()
#include
#include
int main()
{
const int MaxLength = 80;
char String1[] = "No man is an island";
char String2[MaxLength+1];
st
www.eeworm.com/read/155858/11842787
cpp 4elist1310.cpp
//Listing 13.10 Using strcpy()
#include
#include
using namespace std;
int main()
{
char String1[] = "No man is an island";
char String2[80];
strcpy(String2,Strin
www.eeworm.com/read/258733/11846485
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/342759/12001393
cpp sutil.cpp
#include
using namespace std;
double string_to_double(string s)
{
istringstream instr(s);
double x;
instr >> x;
return x;
}
int string_to_int(string s)
{
www.eeworm.com/read/342492/12016245
c tstring.c
//---------------------------------------------------------
/*
File name: Tstring.c
Comments: This file contains the implementation of the
text_string type. Variables of the text_string
t
www.eeworm.com/read/256102/12028249
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