代码搜索:Protected

找到约 10,000 项符合「Protected」的源代码

代码结果 10,000
www.eeworm.com/read/310147/13657779

java pixelquant.java

package gifcode; public class PixelQuant { protected static final int netsize = 256; /* number of colours used */ protected static final int prime1 = 499; protected static final int prime
www.eeworm.com/read/140827/5780537

cs signin.aspx.cs

using System.Web.UI; using System.Web.UI.WebControls; namespace BookShop.Web { public class SignIn : Page { protected TextBox txtUserId; protected TextBox txtPassword; protected BookS
www.eeworm.com/read/492108/6424205

java chathandler.java

import java.net.*; import java.io.*; import java.util.*; public class ChatHandler extends Thread { protected Socket s; protected DataInputStream i; protected DataOutputStream o; Vec
www.eeworm.com/read/129131/14263516

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/119036/14842007

java myshape.java

package firstpkg; public class MyShape extends java.lang.Object implements ShapePrintable { protected MyColor m_ForeColor ; protected MyColor m_BackGroundColor ; protected int m_Lin
www.eeworm.com/read/118075/14888715

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/468574/1486043

java date.java

// Figure 9.21 public abstract class Date { protected int day; // day within a month protected Month month; protected int year; // full calendar year (A.D.) /** pre: 1
www.eeworm.com/read/468574/1486464

java date.java

// Figure 9.21 public abstract class Date { protected int day; // day within a month protected Month month; protected int year; // full calendar year (A.D.) /** pre: 1
www.eeworm.com/read/247828/4474798

java article_articleformat.java

package com.v246; public class Article_articleFormat { protected CustomLableFormat customFormat=new CustomLableFormat(); protected String url=null; //存储网站的安装目录 protected StringBuffer navigatio
www.eeworm.com/read/247171/4486793

vb inheritancec.vb

Option Strict Off 'Testing access to protected members of a class from it's derived class Class C1 Protected a As Integer Protected Function S() a = 47 End Function End Class Class