自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(8)
  • 收藏
  • 关注

原创 Junit讲义

1、JUnit的定义=========               JUnit is an open source Java testing framework used to write and run repeatable tests。              说白了,JUnit 是一个集成测试工具,能实现测试的自动化。               这里说的是单元测试:属于软件工程里的白盒测

2005-12-11 14:09:00 539

原创 Embedding JUnit tests

 Thinking About ComputingArticles by Bruce EckelFormerly Web Log, see new web log 4-6-04 Embedding JUnit testsFor the 4th edition of Thinking in Java, Ive been experimenting with ways to take better

2005-12-11 14:08:00 574

原创 "=="测试

import java.util.*;public class Test{  public static void main(String[] args) {    System.out.println(new Date());    String a="ja";    System.out.println(a);    String b="va";    System.out.println(b

2005-12-11 13:59:00 605

原创 Thinking in Java习题心得

[在构造函数中调用构造函数] class Foo{    public Foo()    {        this("Default");    }     public Foo(String s)    {        System.out.println(s);    }}public class Main{    public static void main(String[] args

2005-12-10 14:23:00 682

原创 Sun认证学习资源

Matrix  一个计算机开源技术组织,主要涉及java基础、编程、工具与应用服务、j2ee,j2me技术、设计模式等,旨在让更多的人得到进步,他们的口号:Matrix is all!   JavaPub-Java开发资源站   提供了很多的JAVA经典书籍下载和JAVA开发技术文集。   系统分析员之窗  该站作为系统分析、软件工程的相关技术推广站点,特别关注软件业所涉及的四个方面,即技术、管理

2005-12-10 14:20:00 690

原创 弄个地方存资料

弄个地方存资料,呵呵,好多有用的文章都该收藏起来,以备后用。

2005-12-10 14:11:00 524

转载 Thinking in Java学习笔记

Thinking in Java学习笔记第一章 对象导论       其实这章介绍的是oop的思想,知道什么是抽象、接口、继承等等,其实这些我觉得没有必要专门提出来写一章,这个我就不介绍了在以后的学习中,这些知识是会在里面融会贯通的。第二章 万事万物皆对象       在java程序中,万事万物皆对象,即使是java程序本身,也是一个对象       一、Reference是操纵对象之钥匙    

2005-12-10 14:04:00 783

转载 Thinking in Java习题心得

[在构造函数中调用构造函数] class Foo{    public Foo()    {        this("Default");    }     public Foo(String s)    {        System.out.println(s);    }}public class Main{    public static void main(String[] args

2005-12-10 14:01:00 766

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除