自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

Fitzwilliam的专栏

Losers always whine about their best; Winners go home and fuck the prom queen.

  • 博客(8)
  • 资源 (5)
  • 收藏
  • 关注

翻译 [书摘]Polymorphism first, RTTI second

RTTI allows you to discover type information from an anonymous base-class reference. Thus, it’s ripe for misuse by the novice, since it might make sense before polymorphic method calls do. Putting a

2006-03-28 16:38:00 1044

原创 [总结]初始化过程浅析

1.      加载类(所有的成员变量,无论是否是静态的,都赋了一个默认值)2.      初始化静态成员变量3.      初始化非静态类成员变量4.      调用该类的构造器 这是每个类的初始化过程。整个程序的初始化过程,是一个类一个类的完成的;其中,可能加载某个类,但是并没有产生它的实例,也就是说,执行了前两步,但是没有执行3,4步。 示例程序:class

2006-03-28 15:06:00 1296

翻译 [书摘]Issues about RTTI (Run Time Type Identification)

 class Test2{ static {  System.out.println("Loading Test2 ...");  } }public  class Test { static {  System.out.println("Loading Test ...");  }public static void main(String[] args)  { Object[] obj

2006-03-28 10:14:00 1044

翻译 [书摘]使用Nested class进行代码测试

Earlier in this book I suggested putting a main( ) in every class to act as a test bed for that class. One drawback to this is the amount of extra compiled code you must carry around. If this is a pro

2006-03-23 09:52:00 905

翻译 [书摘]Cleanup Issues

class Characteristic {  private String s;  Characteristic(String s) {    this.s = s;    System.out.println("Creating Characteristic " + s);  }  protected void dispose() {    System.out.println("finali

2006-03-21 11:22:00 1720 1

原创 DOS Command中,for 和 shift的用法示例

-------------------------------------------save as doscmd.bat----------------------------------@echo off@echo *******echo ***遍历当前文件夹所有扩展名为.txt的文档,将“当前路径+每个txt文件名”依次作为参数,call bat2.bat***FOR %%I

2006-03-16 16:31:00 2730

原创 sth about Inheritance

public  class Test extends Test2{ Test(String s) {  System.out.println(s);  }public static void main(String[] args)  {   Test t=new Test("Test");  }} class Test2{ Test2(String s) {  System.out.print

2006-03-14 16:31:00 1090

原创 Oracle数据库之间的数据转移

create database link MyLinkconnect to scott identified by "tiger"using MyInstance/*to fill a local talbe using the data selected from another database linked with this */insert into emp select *

2006-03-03 17:27:00 1055

ext sample

example for extjs and instances for it os that

2011-08-22

Packt.Publishing.EJB.3.Developer.Guide.May.2008

Packt.Publishing.EJB.3.Developer.Guide.May.2008

2011-07-12

Manning.EJB.3.0.in.Action

Manning.EJB.3.0.in.Action.pdf

2011-07-12

Apress.Pro.EJB.3.Java.Persistence.API.May.2006

Apress.Pro.EJB.3.Java.Persistence.API.May.2006.pdf

2011-07-12

Apress.Beginning.EJB.3.Application.Development.Sep.2006

Apress.Beginning.EJB.3.Application.Development.Sep.2006

2011-07-12

空空如也

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

TA关注的人

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