搜索资源列表
06pop3
- 接收pop3 Public Function Retrieve(ByVal rhs As Pop3Message) As Pop3Message Dim message, response As String Dim msg As New Pop3Message msg.bytes = rhs.bytes msg.number = rhs.number message = \"RETR \" + rh
修改版的java聊天器
- 在原来的基础上进行修改 1.就是把接受线程放在了chat.java中了.这样在此jcreate3.x版本中就可以用了. 我是这样理解的.如果接受线程放在chatfr a me中的话,在程序运行实例chatfr a me对象后,得到的只是一个没接收数据前的List,所以不管发多少数据都不会显示的窗体上.不知是不是? 2.用Calendar对象返回时间,虽是做出来了但Calendar对象的getTime()方法返回的时间toSt
web
- 实现从远程服务器下载文件到指定的客户度目录,直接放入到web页面即可使用。 参考以下脚本 <scr ipt language=\"javascr ipt\"> function downFile(){ var serverUrl serverUrl = document.form1.serverUrl.value alert(serverUrl) windo
src
- 目标: 设计一个小型的学生管理系统。 第一步要求: 1、 对于一个学生类,作为整个系统的核心,我们希望这个类能包括学生共有的基本信息:学生姓名(strName),学号(strNumber),性别(strSex),出生岁月(strBirthday),专业(strSpeciality),籍贯(strAddress)等,要求在构建学生对象的时候提供最少姓名和学号。 2、 作为学生类的实例,我们希望能通过设置器或访问器(se
vcode
- 很好的验证码生成程序。使用方法: picid = Request.QueryString[\"time\"].ToString().Trim() picid =Math.Round((Convert.ToDouble(picid)*10000),0).ToString() Tools.image.VerifyImage pic = new Tools.image.VerifyImage(picid, 90, 50)
Celltrack
- res = RIL_GetCellTowerInfo(hRil) if (res != IntPtr.Zero) throw new Exception(\"Could not read the cell info from ril\") RIL_Deinitialize(hRil) return res.ToString() }
ValueAndEnumTypes
- 向开发人员介绍 .NET fr a mework 值类型和枚举类型,并说明如何创建和使用这些类型。本示例从 ValueType 和 Enum 类派生这些类型。其中的每个类都提供了能使开发人员轻松使用这些类的特性。 下面的列表内容简要介绍本示例使用的类和技术。 值与引用类型 ValueType 所有值类型都是从 ValueType 隐式派生的。 Object 所有类型都是从 Object 隐式派生的。
list
- (1)写一个final参数类M,包括比较次数、交换次数、探测次数属性,并重写构造器和toString方法。 (2)写一个抽象类A,其中包括要排序的数据。提供三个final方法,分别完成比较、探测、交换操作的同时,正确改变私有的M类对象成员的相关属性。并提供一个虚方法doSort,同时提供一个final方法sort(先设置M对象初值,然后调用doSort方法,返回M对象引用) (3)写三个采用不同方法排序的A类的派生类A1,A2,
L1_vector
- 输入四个点,判断此四点是否可形成一个平行四边形。 程序中描述了一个抽象数据类型Vector2D,表示一个向量。具有(x,y)两个值。其本身具有减另一个向量(minus(Vector2D)),判断自身是否为零向量(iszero()),与另一个向量对应值y,x乘积之差(inner(Vector2D))。由于两个向量平行,则乘积之差x1*y2-x2*y1=0。点A,B,C,D四点组成平行四边形的条件是AB//CD,BC//DA且各个向量
Lab10
- Refer to the UML diagram above and implement the Course class. After you define the Course class, you must create a Course object with the following details: Programming I, WXES1114, taught by SMT. Besides, you
GatutTextCrawler
- 本程序执行后,创建一个能够加载文字的面板,文字的内容是本地主机的IP地址的动态显示。跑马灯文字的大小和跑马灯文字显示的速度都可以在GatutTextCrawler.html文件里通过参数进行设置。 编程思路:首先,本练习因为要制作侦测IP的跑马灯的实例,所以首先要生成程序界面:在函数public void init()中,首先通过语句s = getParameter(\"fontSize\")和fontSize = s != nul
matrix
- (1) 设计和编写代表矩阵的Matrix类。该类包括矩阵行列数变量int rows和int cols,矩阵数据数组double data[][],构造方法Matrix()、Matrix(int rows,int cols)、Matrix(int rows,int cols,double data[][]),获取某元素值的方法getData(int row,int col),设置某元素值的方法setData(int row,int col
column
- (1) 编写一个代表圆柱体的Cylinder类,该类是Circle类的子类。Cylinder类包括圆柱体的高度变量height以及计算圆柱体的体积方法volume()和计算表面积的方法surfaceArea()。 (2) 编写测试Cylinder类的CylinderTest类,并在该类得main方法中调用Cylinder类的相关方法。 (3) 重写Point和Circle类的equals()、toString()方法,并测试这些
gamebestle
- //启动登录服务器 myListener = new TcpListener(localAddress, int.Parse(port.Text)) myListener.Start() service.SetListBox(string.Format(\"开始在{0},{1}监听客户连接\", localAddress.ToString(), port.Text.Trim())) //创建一个线程
2008_05_25_111148859
- //启动登录服务器 myListener = new TcpListener(localAddress, int.Parse(port.Text)) myListener.Start() service.SetListBox(string.Format(\"开始在{0},{1}监听客户连接\", localAddress.ToString(), port.Text.Trim())) //创建一个线程
Java20080829
- 在作业1的Employee和EmployeeDemo两个类基础上修改 1,重写Employee类的toString方法,返回Employee类的相关信息的字符串形式 重写Employee类的equals方法,如果两个Employee实例的名字和所属部门相同,返回true; 并在EmployeeDemo类里面验证上述两个方法 2,定义Clerk、Salesman、Engineer三个类,分别继承自Emplo
The-ToString-polymorphism
- The ToString polymorphism Tostring的多态-The ToString polymorphism Tostring的多态
tostring-2
- Since the behavior of Function.toString() is implementation-dependent, toString tests for function are not in the ECMA suite for Java.
number-tostring-small
- This file is a concatenation of the number-tostring and to-precision mjsunit tests where the mjsunit assert code has been removed.
tostring
- 建立main函数,建立tostring方法,并练习for loop(Add a toString() method in the Dog class, such that this method provides a String representation of the Dog object. This method should return all the Dog attributes in a String. ii) Writ