代码搜索:Protected
找到约 10,000 项符合「Protected」的源代码
代码结果 10,000
www.eeworm.com/read/289976/3987229
cs 9-5.cs
//程序9-5
using System;
namespace School
{
public class Student // 基类
{
protected string studName; // protected成员
protected int studID;
public Student() // 基类的无参数构造函数
{ }
public
www.eeworm.com/read/427270/1972959
java articlemanage_bean.java
package com.v246;
public class ArticleManage_bean
{
protected java.sql.Connection conn=null;
protected java.sql.Statement stm=null;
protected Connections connTmp=new Connections();
public vo
www.eeworm.com/read/372305/2775338
java articlemanage_bean.java
package com.v246;
public class ArticleManage_bean
{
protected java.sql.Connection conn=null;
protected java.sql.Statement stm=null;
protected Connections connTmp=new Connections();
public vo
www.eeworm.com/read/358963/2981895
java articlemanage_bean.java
package com.v246;
public class ArticleManage_bean
{
protected java.sql.Connection conn=null;
protected java.sql.Statement stm=null;
protected Connections connTmp=new Connections();
public vo
www.eeworm.com/read/267757/4259093
java employee.java
package j2se.part3;
public class Employee{
//成员数据
protected String id;
protected String name;
protected float salary;
//构建函数
public Employee(){
System.out.println("Employee()");
www.eeworm.com/read/425076/10382443
java bufferimpl.java
package concurrency.buffer;
/*********************BUFFER*****************************/
public class BufferImpl implements Buffer {
protected E[] buf;
protected int in = 0;
www.eeworm.com/read/159990/10581679
java superdemo2.java
/**
*super keyword
*2004.11.17. xhcprince
*/
class That
{
protected String nm()
{
return "That";
}
}
class More extends That
{
protected String nm()
{
return "More";
}
www.eeworm.com/read/277856/10598128
java integrated.java
public class Integrated implements Savings, Current
{
protected SavingsImpl savingsImpl;
protected CurrentImpl currentImpl;
public Integrated()
{
savingsImpl = new SavingsImpl();
c