代码搜索:Protected
找到约 10,000 项符合「Protected」的源代码
代码结果 10,000
www.eeworm.com/read/315441/13542442
pas sqlstore.pas
unit SqlStore;
interface
uses
SysUtils, Classes;
type
TSqlStore = class(TComponent)
private
{ Private declarations }
protected
{ Protected declarations }
public
www.eeworm.com/read/347000/6341379
cs duck.cs
using System;
namespace DesignPatterns.Strategy.Ducks
{
public abstract class Duck
{
protected IFlyBehavior flyBehavior;
protected IQuackBehavior quackBehavior;
www.eeworm.com/read/346994/11706906
java lists.java
public class ListOfNumbers {
protected int icount;
protected double itotal;
//Constructor.
ListOfNumbers() {
icount = 0;
itotal = 0;
}
public
www.eeworm.com/read/129131/14263487
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/118075/14888698
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/319691/3553124
java factualanswer.java
package qa;
public class FactualAnswer extends Answer
{
private String[] content;
protected FactualAnswer()
{
}
protected FactualAnswer(String[] answerString)
{
content
www.eeworm.com/read/292880/8327834
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/230450/4722886
java point2.java
//Point2.java
public class Point2 {
protected int x; //protected的数据成员x将被子类继承
protected int y; //protected的数据成员y将被子类继承
public Point2(){
}
public Point2( int xValue, int y
www.eeworm.com/read/188597/8525515
java rubberband.java
import java.awt.*;
import java.awt.event.*;
abstract public class RubberBand
{
protected Point anchorPt = new Point(0,0);
protected Point stretchedPt = new Point (0, 0);
protected Point l
www.eeworm.com/read/363616/9942346
java nonleaf.java
package test;
import java.util.*;
public class NonLeaf extends Node {
public static char commontype='z';
protected int during=Integer.MAX_VALUE;
protected int tl=0;
protected int th=Intege