代码搜索:String
找到约 10,000 项符合「String」的源代码
代码结果 10,000
www.eeworm.com/read/167506/9967310
cs c5-05.cs
//字符串使用示例
using System;
class test
{
public static void Main( String[] args )
{
string a = "\u0068ello ";
string b = "world";
Console.WriteLine( a + b );
Conso
www.eeworm.com/read/166738/10003396
pas unit1.pas
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, ComCtrls, DBCtrls, DB, DBTables;
Const Space=' ';
type
TForm
www.eeworm.com/read/166738/10003419
~pas unit1.~pas
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, ComCtrls, DBCtrls, DB, DBTables;
Const Space=' ';
type
TForm
www.eeworm.com/read/361999/10024675
cs globaldb.cs
using System;
using System.Collections;
using System.Text;
using System.Data;
using System.Data.SqlClient;
using System.Configuration;
namespace ExamineSystem
{
///
/// Summary
www.eeworm.com/read/166055/10038056
java stringmutation.java
//********************************************************************
// StringMutation.java Author: Lewis/Loftus
//
// Demonstrates the use of the String class and its methods.
//*******
www.eeworm.com/read/165970/10044125
java 1_02_030421217.java
public class PrintString
{
String string;
PrintString()
{
string="000000";
}
public static void main(String[] args)
{
PrintString p = new PrintString();
System.out.
www.eeworm.com/read/361402/10054360
java reverse.java
// reverse.java
// stack used to reverse a string
// to run this program: C>java ReverseApp
import java.io.*; // for I/O
///////////////////////////////////////////////////////////
www.eeworm.com/read/165016/10078802
java listsort.java
/*
* 嶌惉擔: 2006/06/16
*
* 偙偺惗惉偝傟偨僐儊儞僩偺憓擖偝傟傞僥儞僾儗乕僩傪曄峏偡傞偨傔
* 僂傿儞僪僂 > 愝掕 > Java > 僐乕僪惗惉 > 僐乕僪偲僐儊儞僩
*/
package test;
import java.util.ArrayList;
import java.util.Collections;
import java.ut
www.eeworm.com/read/164660/10098156
java applicationinout.java
import java.io.*;
public class ApplicationInOut
{
public static void main(String args[])
{
String s="";
System.out.print("please enter a string:");
try
www.eeworm.com/read/360311/10103864
cpp c10-4-1.cpp
#include
using namespace std;
class String //String 是用户自己指定的类名
{public:
String(){p=NULL;}
String(char *str);
void display();
private:
char *p;
};
Stri