java
文章平均质量分 81
shenxm1966
这个作者很懒,什么都没留下…
展开
-
java 父构造器中调用子类重写的方法
class Base{public Base(){test();}public void test(){System.out.println("111");}}public class Sub extends Base{private String name;public void test(){System.out.prin转载 2014-02-13 15:48:26 · 609 阅读 · 0 评论 -
Tomcat配置
1.下载Tomcat,官网上下载的文件都是绿色免安装的。如:apache-tomcat-7.0.26-windows-x64.zip 下载地址:http://tomcat.apache.org 下载后解压缩:E:\apache-tomcat-7.0.26,随你喜欢解压哪里。如果在C盘,win7系统下,有文件访问的权限问题右击属性->安全->高级->更改权限->选择需要更改权限的用户->编辑转载 2014-03-17 15:21:27 · 3968 阅读 · 0 评论 -
JComboBox itemStateChanged事件总是触发两次
今天用到JcomBox,在JComboBox的监听事件时总是执行两次。代码如下:comboBox.addItemListener(new ItemListener() { @Override public void itemStateChanged(ItemEvent e) { combo转载 2014-10-09 09:38:11 · 2298 阅读 · 1 评论 -
eclipse 基础操作
Eclipse中查看JDK类库的源代码:设置: 1.点 “window”-> "Preferences" -> "Java" -> "Installed JRES"2.此时"Installed JRES"右边是列表窗格,列出了系统中的 JRE 环境,选择你的JRE,然后点边上的 "Edit...", 会出现一个窗口(Edit JRE)3.选中rt.jar文件的这转载 2015-12-29 14:58:35 · 304 阅读 · 0 评论 -
Thread
1. java.lang.Thread.yield()A hint to the scheduler that the current thread is willing to yield its current use of a processor. The scheduler is free to ignore this hint.Yield is a heuristic a原创 2016-01-07 14:08:52 · 366 阅读 · 0 评论