代码搜索:getClass
找到约 825 项符合「getClass」的源代码
代码结果 825
www.eeworm.com/read/110417/6164878
java setof.java
/* $Id: SetOf.java,v 1.8 2001/06/30 01:56:29 raif Exp $
*
* Copyright (C) 1997-2001 The Cryptix Foundation Limited. All rights reserved.
*
* Use, modification, copying and distribution of this
www.eeworm.com/read/110417/6164879
java choice.java
/* $Id: Choice.java,v 1.7 2001/05/26 07:10:24 raif Exp $
*
* Copyright (C) 1997-2001 The Cryptix Foundation Limited. All rights reserved.
*
* Use, modification, copying and distribution of thi
www.eeworm.com/read/104260/6205441
java parseposition.java
/*
* Java core library component.
*
* Copyright (c) 1997, 1998
* Transvirtual Technologies, Inc. All rights reserved.
*
* See the file "license.terms" for information on usage and redistri
www.eeworm.com/read/230924/14269141
java receiveevent.java
package sim;
import com.Message;
import broker.*;
public class ReceiveEvent extends Event {
Destination from;
Destination to;
Message message;
public ReceiveEvent(Destination from, Destinati
www.eeworm.com/read/124570/14559188
java instancejoiner.java
/*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either vers
www.eeworm.com/read/115143/15024542
java scan.java
package lolo.scans;
/** A package base class for all lolo.Scan subclasses.
*
* @see lolo.Scan
* @author Bernd Kühl
www.eeworm.com/read/166404/5474854
java gmatchercreate_c.java
/*
* This is source code of the Snapshot Generator, an extension for USE
* to generate (valid) system states of UML models.
* Copyright (C) 2001 Joern Bohling, University of Bremen
*
* About USE:
www.eeworm.com/read/160691/5567374
java value.java
/* $Id: Value.java,v 1.3.2.1 2006/01/16 22:57:56 eric Exp $
*
* ProGuard -- shrinking, optimization, and obfuscation of Java class files.
*
* Copyright (c) 2002-2006 Eric Lafortune (eric@graphics.
www.eeworm.com/read/200886/15420797
m getallclass.m
function allClass = getAllClass(G)
allClass = zeros(1,G.numSamples);
for ss=1:G.numSamples
allClass(ss)=getClass(G,ss);
end
www.eeworm.com/read/391678/8391597
txt chap4-12.txt
// 程序4-12
class Base{ // 父类
int x=1; // 实例变量x
void print( ){ // 定义了print方法,输出当前对象的类名和变量x
System.out.println("当前类为 "+ this.getClass( ).getName( ));
System.out.println("