代码搜索:Protected
找到约 10,000 项符合「Protected」的源代码
代码结果 10,000
www.eeworm.com/read/107482/6943020
java pop3clientdemo.java
import java.io.*;
import java.net.*;
import java.util.*;
public class Pop3ClientDemo
{
protected int port = 110;
protected String hostname = "localhost";
protected String username = "";
p
www.eeworm.com/read/313115/13596234
java marking.java
public class marking {
protected static final int w = Integer.MAX_VALUE - 200;
protected int[] mar;
protected String name = "";
public marking(int[] m){
this.mar = new int[m.len
www.eeworm.com/read/408225/11401374
java link.java
package apv.nrlibj;
class Link
{
protected float wgt;
protected float wgtb;
protected Node nfrom;
Link(float wgt, Node nfrom){this.wgt=wgt;this.nfrom=nfrom;}
public int getNfrom(){if (nf
www.eeworm.com/read/131759/14131301
java fps.java
import javax.media.j3d.*;
import javax.vecmath.*;
import java.util.Enumeration;
final class FPS extends Behavior {
protected int nFrames;
protected long startTime;
protected final Wakeup
www.eeworm.com/read/444101/1736664
java superdemo_2.java
package com.iss.five;
class People{
protected int age ;
protected void show(){
System.out.println("父类 Show");
}
}
public class SuperDemo_2 extends People {
protected void show(
www.eeworm.com/read/373028/9477623
java bstnode.java
/************************ BSTNode.java **************************
* node of a generic binary search tree
*/
public class BSTNode {
protected Comparable el;
protected BSTNode l
www.eeworm.com/read/169687/9845611
pas sqlstore.pas
unit SqlStore;
interface
uses
SysUtils, Classes;
type
TSqlStore = class(TComponent)
private
{ Private declarations }
protected
{ Protected declarations }
public
www.eeworm.com/read/169687/9845756
pas sqlstore.pas
unit SqlStore;
interface
uses
SysUtils, Classes;
type
TSqlStore = class(TComponent)
private
{ Private declarations }
protected
{ Protected declarations }
public
www.eeworm.com/read/169687/9845890
pas sqlstore.pas
unit SqlStore;
interface
uses
SysUtils, Classes;
type
TSqlStore = class(TComponent)
private
{ Private declarations }
protected
{ Protected declarations }
public
www.eeworm.com/read/161772/10376919
java lists.java
public class ListOfNumbers {
protected int icount;
protected double itotal;
//Constructor.
ListOfNumbers() {
icount = 0;
itotal = 0;
}
public