代码搜索:getClass
找到约 825 项符合「getClass」的源代码
代码结果 825
www.eeworm.com/read/171479/5394813
groovy importtest.groovy
import java.io.*
import java.util.Map
import java.util.List
class ImportTest extends GroovyTestCase {
void testImportAll() {
def file = new File("foo.txt")
assert file instanceof
www.eeworm.com/read/170992/5400976
java itemsearchresponse.java
package org.ksoap2.samples.amazon.search.messages;
import java.util.*;
import org.ksoap2.serialization.*;
public class ItemSearchResponse extends BaseObject {
private BookItems bookItems;
www.eeworm.com/read/167133/5468570
java basicpermission.java
/*
* Java core library component.
*
* Copyright (c) 1999
* Archie L. Cobbs. All rights reserved.
* Copyright (c) 1999
* Transvirtual Technologies, Inc. All rights reserved.
*
* See the file
www.eeworm.com/read/167133/5469538
java testobjectstreamfield.java
/*
* Test the most basic features of the ObjectStreamField class.
*
* Copyright (c) 2002 Pat Tullmann
* All Rights Reserved.
*
* This file is released into the public domain.
*
* @author Pat T
www.eeworm.com/read/164604/5488949
java remotecontrol.java
package headfirst.command.party;
import java.util.*;
//
// This is the invoker
//
public class RemoteControl {
Command[] onCommands;
Command[] offCommands;
Command undoCommand;
public RemoteCo
www.eeworm.com/read/164604/5488970
java remotecontrolwithundo.java
package headfirst.command.undo;
import java.util.*;
//
// This is the invoker
//
public class RemoteControlWithUndo {
Command[] onCommands;
Command[] offCommands;
Command undoCommand;
public R
www.eeworm.com/read/162614/5536433
java xgraphicsenvironment.java
/* Copyright (C) 2005 Free Software Foundation
This file is part of libgcj.
This software is copyrighted work licensed under the terms of the
Libgcj License. Please consult the file "LIBGCJ_LIC
www.eeworm.com/read/162614/5536834
java invokereturn.java
import java.lang.reflect.Method;
// Test return values of Method.invoke.
public class InvokeReturn {
public boolean bTrue() {
return true;
}
public boolean bFalse() {
return false;
}
www.eeworm.com/read/162614/5536933
java stringbuffer_1.java
// Test StringBuffer.replace(), reverse(), insert(String), append(String),
// and delete().
public class StringBuffer_1
{
public static void main(String args[])
{
StringBuffer sb = new Strin
www.eeworm.com/read/162614/5537052
java pr100.java
// PR 100
// Second call to hashcode causes SEGV when dynamically linking.
public class pr100
{
public static void main(String[] args) {
pr100 ht = new pr100();
System.err.println(ht.hashCod