学海拾遗
生活、技术、思想无处不在学习
posts - 52, comments - 23, trackbacks - 0, articles - 3
BlogJava
::
首页
::
新随笔
::
联系
::
聚合
::
管理
Java Tutorial,学到了一点
Posted on 2007-03-17 00:28
tanzek
阅读(273)
评论(0)
编辑
收藏
一直很奇怪为什么Eclipse中的Visual Editor在进行代码生成时,用的方法是新建一个线程类来调用界面显示函数。
今天在查看Java Tutorial时,也看到了这个:
1
public
static
void
main(String[] args)
{
2
//
Schedule a job for the event-dispatching thread:
3
//
creating and showing this application's GUI.
4
javax.swing.SwingUtilities.invokeLater(
new
Runnable()
{
5
public
void
run()
{
6
createAndShowGUI();
7
}
8
}
);
9
}
10
同时还很重要地注意到了在它中间还有一句注释:
//
Schedule a job for the event-dispatching thread:
//
creating and showing this application's GUI.
这两句话,表面意思就是:调用一个事件分派线程:创建和显示这个应用界面。(翻译不是很准确,请见谅!)
再细细一想,想一想MVC模型,呵呵,倒是真的发现点了东西了。
看样子这个Tutorial会越看越有劲了!~
菜鸟初次抓笔,请勿见笑哦!~
后注:
第一个例子,在Java的评注中是:
1
、Import the pertinent packages.
2
、Set up a top
-
level container.
3
、Display the container.
4
、Be thread
-
safe.
新用户注册
刷新评论列表
只有注册用户
登录
后才能发表评论。
网站导航:
博客园
IT新闻
知识库
C++博客
博问
管理
Powered by:
BlogJava
Copyright © tanzek
日历
<
2007年3月
>
日
一
二
三
四
五
六
25
26
27
28
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1
2
3
4
5
6
7
常用链接
我的随笔
我的文章
我的评论
我的参与
最新评论
留言簿
(2)
给我留言
查看公开留言
查看私人留言
随笔分类
OpenGL
工作与生活(2)
技术学习(16)
翻译(2)
读书记录(5)
课程内容(2)
随想(2)
随笔档案
2009年2月 (1)
2008年11月 (4)
2008年10月 (4)
2008年7月 (2)
2008年5月 (2)
2008年4月 (1)
2008年3月 (1)
2008年1月 (4)
2007年12月 (1)
2007年9月 (2)
2007年8月 (1)
2007年7月 (9)
2007年6月 (3)
2007年5月 (5)
2007年4月 (7)
2007年3月 (5)
文章档案
2007年6月 (2)
2007年5月 (1)
收藏夹
杂七杂八(4)
Technical Articles
By supporting two memory-addressing modes, the PowerPC can run any OS or application
One of the annoying but important differences among processors is the way they store data in memory. Most processors use one of two data-organization strategies, known as big-endian and little-endian, which are described in detail below.
New C++ Datatypes Accelerate Algorithm Validation by 10X
Mentor Graphics has made available new high-speed datatypes based on ANSI C++ that the company claims can accelerate algorithm validation by 10 fold.
Web Sites
Digg / All News & Videos
艾瑞网·中国新经济门户
搜索
最新评论
1. re: TCP/IP Illustrated中文版[未登录]
haoshu
--wu
2. re: Windows 2000下的远程桌面工具
提示 mstsc.exe 不是合法的32位程序。
--consen
3. re: 关于人工神经网络中的M-P模型的一点疑问
T为阈值
--理l
4. re: 你的SimpleDateFormat起作用了吗?
评论内容较长,点击标题查看
--shanxmxj
5. 福娃免费空间
福娃免费空间
http://h.8wa.com
--sad
阅读排行榜
1. Windows 2000下的远程桌面工具(9886)
2. 你的SimpleDateFormat起作用了吗?(6937)
3. JOONE(Java Object-Oriented Network Engine)使用初探(5950)
4. 关于Windows文件共享服务的一些问题(5606)
5. VC++中的ON_COMMAND_RANGE宏(4668)
评论排行榜
1. 关于人工神经网络中的M-P模型的一点疑问(4)
2. Windows 2000下的远程桌面工具(4)
3. 你的SimpleDateFormat起作用了吗?(3)
4. TAOCP之排序算法(一)(2)
5. JOONE(Java Object-Oriented Network Engine)使用初探(2)