代码搜索:Protected
找到约 10,000 项符合「Protected」的源代码
代码结果 10,000
www.eeworm.com/read/274192/10885584
java item.java
package chapter1;
public class Item {
//条目的Id
protected String ID;
//条目的描述
protected String desc;
//条目的价格
protected double price;
//此条目中货物的数量
protected int units;
//条目构造函数
www.eeworm.com/read/155308/11885577
java item.java
package chapter1;
public class Item {
//条目的Id
protected String ID;
//条目的描述
protected String desc;
//条目的价格
protected double price;
//此条目中货物的数量
protected int units;
//条目构造函数
www.eeworm.com/read/208251/15250291
java item.java
package chapter1;
public class Item {
//条目的Id
protected String ID;
//条目的描述
protected String desc;
//条目的价格
protected double price;
//此条目中货物的数量
protected int units;
//条目构造函数
www.eeworm.com/read/428098/1962237
h debug.h
class NoMen//异常类
{
public:
NoMen(){}
protected:
private:
};
class OutOfBounds
{
public:
OutOfBounds(){}
protected:
private:
};
www.eeworm.com/read/428098/1962247
h debug.h
class NoMen //异常类
{
public:
NoMen(){}
protected:
private:
};
class OutOfBounds
{
public:
OutOfBounds(){}
protected:
private:
};
www.eeworm.com/read/167506/9967214
cs c7-13.cs
// protected修饰符示例
using System;
class MyClass
{
protected int x;
protected int y;
}
class MyDerivedC: MyClass
{
public static void Main()
{
MyDerivedC mC = new MyDeriv
www.eeworm.com/read/333281/12691928
java clock.java
import org.jcsp.lang.CSProcess;
import org.jcsp.lang.ChannelOutput;
class Clock implements CSProcess {
// protected attributes
protected static final int seconds = 1000;
protected sta
www.eeworm.com/read/314466/13567072
java employee.java
public abstract class Employee {
protected String firstName;
protected String lastName;
protected String idCard; //身份证号
public Employee(String firstName, String lastName, String idCard) {
www.eeworm.com/read/151862/12166732
vb frmverify.vb
Public Class frmverify
Inherits System.Windows.Forms.Form
Protected studbset As DataSet
Protected qflag As Boolean
Protected marid As Integer
#Region " Windows 窗体设计器生成的代码 "
www.eeworm.com/read/226401/14476916
java measureresult.java
package com.ict.netcom2.result;
public class MeasureResult {
protected int taskId;
protected String probeIp;
protected int taskType;
public void setTaskType(int taskType) {
this.t