
java基础
iteye_20681
这个作者很懒,什么都没留下…
展开
-
总结一下SVN的用法
SVN的中文帮助主题页:http://svndoc.iusesvn.com/svnbook/index.html下面是一些我常用的命令 在此总结一下:1、将文件checkout到本地目录svn checkout path(path是服务器上的目录)例如:svn checkout svn://192.168.1.1/pro/domain简写:svn co2、往版本库中添加...原创 2009-11-25 15:00:33 · 124 阅读 · 0 评论 -
It面试 自我介绍
Good morning !It is really my honor to have this opportunity for a interview,I hope i can make a good performance today. I'm confident that I can succeed.Now i will introduce myself bri...原创 2011-08-02 16:09:57 · 1571 阅读 · 1 评论 -
It面试 经典 问答
Q: Can you sell yourself in two minutes? Go for it. (你能在两分钟內自我推荐吗?大胆试试吧!) A: With my qualifications and experience, I feel I am hardworking, responsible and diligent in any project I undertake. Y...原创 2011-08-02 16:11:31 · 147 阅读 · 0 评论 -
JVM调优总结
JVM调优总结原创 2011-09-12 14:50:51 · 101 阅读 · 0 评论 -
关于一个多态案例的理解
package polymorphic; class Glyph { void draw(){System.out.println("Glyph.draw()");} public Glyph() { System.out.println("Glyph() before draw()"); draw(); System.out.println(...原创 2011-01-16 14:55:37 · 169 阅读 · 0 评论 -
java实现一个自定义排序
java中List排序 例子 package test; import java.lang.reflect.InvocationTargetException;import java.lang.reflect.Method;import java.util.ArrayList;import java.util.Collections;import java.u...原创 2011-10-12 18:02:34 · 210 阅读 · 0 评论