代码搜索:String
找到约 10,000 项符合「String」的源代码
代码结果 10,000
www.eeworm.com/read/312315/13613674
java thread.java
import java.net.*;
import java.io.*;
import java.util.*;
/**
* Class ServerThread is the implementation
* of a thread of execution for the multithreaded
* Java HTTP server.
*/
class Serv
www.eeworm.com/read/308316/13704115
java checkstring.java
class CheckString {
public static void main(String[] arguments) {
String str = "Nobody ever went broke by buying IBM";
System.out.println("The string is: " + str);
S
www.eeworm.com/read/307616/13719237
cpp ex4_17.cpp
// Ex4_17.cpp : main project file.
// Creating a custom format string
#include "stdafx.h"
using namespace System;
int main(array ^args)
{
array^ values = { 2, 456,
www.eeworm.com/read/307145/13727809
c ch07s020.c
#include
int main(void)
{
char *s = "string";
int d = 42;
double f = 3.14;
printf("String is %s, int is %d, double is %f\n");
return 0;
}
www.eeworm.com/read/305812/13760452
java checkpalindrome.java
import javax.swing.JOptionPane;
public class CheckPalindrome {
/** Main method */
public static void main(String[] args) {
// Prompt the user to enter a string
String s = JOptionPane.show
www.eeworm.com/read/302155/13841039
c scan.c
/* Functions for reading FILE*'s up to certain strings or characters. */
/* Copyright (C) 1997 Andrew McCallum
Written by: Andrew Kachites McCallum
This file is part of
www.eeworm.com/read/301630/13853408
java gray.java
package Method;
public class Gray {
public static void main(String[] args) {
String[] string=new String[1
www.eeworm.com/read/151039/5687205
java course.java
package com.j2ee14.ch10;
/**
*Course值对象
*/
public class Course
{
private String id;
private String name;
private String description;
public void setId(String string) {
i
www.eeworm.com/read/147866/5719561
java textnode.java
// HTMLParser Library $Name: v1_6_20051112 $ - A java-based parser for HTML
// http://sourceforge.org/projects/htmlparser
// Copyright (C) 2004 Derrick Oswald
//
// Revision Control Information
//
//
www.eeworm.com/read/147866/5719608
java imagetag.java
// HTMLParser Library $Name: v1_6_20051112 $ - A java-based parser for HTML
// http://sourceforge.org/projects/htmlparser
// Copyright (C) 2004 Somik Raha
//
// Revision Control Information
//
// $Sou