代码搜索:Protected
找到约 10,000 项符合「Protected」的源代码
代码结果 10,000
www.eeworm.com/read/473450/6842789
java information.java
import java.io.*;
public class Information implements java.io.Serializable
{
protected String userName;
protected int score;
protected Information next;
public Information(String pName,int
www.eeworm.com/read/269460/11097435
java clientthread.java
import java.io.*;
import java.net.*;
import java.util.*;
public class ClientThread extends Thread
{
protected Socket client;
protected BufferedReader in;
protected PrintStream out;
public
www.eeworm.com/read/335420/12526817
java~3~ spritemanager.java~3~
package WealthGod104;
import javax.microedition.lcdui.game.*;
public class SpriteManager extends LayerManager implements Runnable{
protected Sprites sp;
protected Sprites sp1;
protected
www.eeworm.com/read/355174/10289402
java sceneunit.java
//package bushfighting;
/*
这个类用于记录场景中的物品信息
*/
class SceneUnit
{
protected int mType = 0; //物品的类型
protected int mLife = 0;//物品的存在时间
protected int mX=-1,mY;//物品的坐标
protected int mDirec
www.eeworm.com/read/305197/3779874
java sceneunit.java
//package bushfighting;
/*
这个类用于记录场景中的物品信息
*/
class SceneUnit
{
protected int mType = 0; //物品的类型
protected int mLife = 0;//物品的存在时间
protected int mX=-1,mY;//物品的坐标
protected int mDirec
www.eeworm.com/read/178404/9400351
java point.java
public class Point {
protected double x;
protected double y;
protected double distance;
Point (){
setX(0);
setY(0);
}
Point (double x,double y){
setX(x);
setY(y);
}
public
www.eeworm.com/read/373028/9477647
java personal.java
import java.io.*;
public class Personal extends IOmethods implements DbObject {
protected final int nameLen = 10, cityLen = 10;
protected String SSN, name, city;
protected int year;
p
www.eeworm.com/read/458920/7285418
java messagebox.java
import java.awt.*;
import java.applet.*;
import java.awt.event.*;
public class MessageBox extends Dialog
{
protected Button okButton;
protected Button cancelButton;
protected static boolea
www.eeworm.com/read/330256/12904374
java managerusing.java
//Example 5 of Chapter 3
import javax.swing.JOptionPane;
import java.util.Date;
class Employee
{
protected String name;
protected double salary;
protected Date birthDate;
public Emp
www.eeworm.com/read/317619/13501012
java studentui.java
package UI;
import java.awt.*;
import javax.swing.*;
import javax.swing.border.*;
public class StudentUI extends JPanel{
protected JLabel labels[];
protected JTextField fields[];
protected