代码搜索:toString
找到约 10,000 项符合「toString」的源代码
代码结果 10,000
www.eeworm.com/read/149022/12409363
vhd mms.vhd
------------------------------------------------------------
-- File name : stdioimp.vhd
-- Title : StdIoImp
-- project : SPARC
-- Library : MMS
-- Author(s) : E. Laubacher
-- Purpose : package
www.eeworm.com/read/232810/14180888
java scriptentry.java
public class ScriptEntry {
String title;
String cmd;
public ScriptEntry(String title, String cmd) { this.title=title; this.cmd=cmd; }
public String toString() { return title; }
}
www.eeworm.com/read/129125/14265537
java html.java
public class HTML
{ protected String token;
public String toString()
{ return token; }
}
www.eeworm.com/read/127767/14337964
txt e083. parsing and formatting a number into binary, octal, and hexadecimal.txt
int i = 1023;
// Parse and format to binary
i = Integer.parseInt("1111111111", 2); // 1023
String s = Integer.toString(i, 2); // 1111111111
// Parse and format to o
www.eeworm.com/read/127116/14377628
java not.java
package com.javapatterns.interpreter;
public class Not extends Expression
{
/**
* @link aggregation
*/
private Expression exp;
public Not(Expression exp)
{
th
www.eeworm.com/read/127116/14377634
java and.java
package com.javapatterns.interpreter;
public class And extends Expression
{
/**
* @link aggregation
*/
private Expression left, right;
public And(Expression left, Exp
www.eeworm.com/read/224892/14564495
cs customdialog.cs
using System;
using System.IO;
using System.Drawing;
using System.Windows.Forms;
namespace PhotoSprite.Dialog
{
public partial class CustomDialog : Form
{
private int [] sequence = n
www.eeworm.com/read/114690/15041804
txt 十六进制输出.txt
byte ch;
Console.WriteLine("0x"+ch.ToString("X"));
www.eeworm.com/read/167133/5467311
java randomness.java
/*
* Randomness.java
*
* Copyright (c) 2004 The University of Utah and the Flux Group.
* All rights reserved.
*
* This file is licensed under the terms of the GNU Public License.
* See the file