Topic: [求助]有几个东东不太明白 (Applet, new Color(int), getParameter, MediaTracker)

  Print this page

1.[求助]有几个东东不太明白 (Applet, new Color(int), getParameter, MediaTracker) Copy to clipboard
Posted by: battlekiller
Posted on: 2004-10-15 19:18

有几个方法我不懂
new Color(Integer.parseInt(s.substring(1), 16));
这个是创建什么》??
getParameter(str);
getParameter(str,int);
这两个是返回什么,他们不用对象调用!
MediaTracker这个类是干什么用的??
希望各位大虾帮忙
thank you

2.Re:[求助]有几个东东不太明白 [Re: battlekiller] Copy to clipboard
Posted by: kavinwang
Posted on: 2004-10-16 21:00

这些东西在具体的情况下有具体的含义,如果你想问的话,请把问题说清楚。
new Color(Integer.parseInt(s.substring(1), 16));创建一个Color对象
getParameter(str);
getParameter(str,int);
先说清楚它们来自哪里?
MediaTracker从字面上看是控制多媒体的。

3.en [Re: battlekiller] Copy to clipboard
Posted by: battlekiller
Posted on: 2004-10-17 18:52

这是我看了一个钟表的程序
他用if(str=="#")先判断是否为颜色
接着用new Color(Integer.parseInt(s.substring(1), 16));我不知道是干什么!
getParameter(str);他是用字符串接收的
真难
应该在什么包我也不知道
sorry

4.Re:[求助]有几个东东不太明白 [Re: battlekiller] Copy to clipboard
Posted by: kavinwang
Posted on: 2004-10-18 08:45

我建议你先到 Java基础 中去看一下,或者再深入研究一下编程方面的书,因为你问的问题脱离了问题的环境。

你好像凭空问:这根木棍是干什么用的?

5.Re:[求助]有几个东东不太明白 [Re: kavinwang] Copy to clipboard
Posted by: nothing
Posted on: 2004-10-18 08:59

对啊,要给个context先...

6.Re:[求助]有几个东东不太明白 [Re: battlekiller] Copy to clipboard
Posted by: ljy0000
Posted on: 2004-10-18 14:32

你应该是在Applet中看到的。
new Color(Integer.parseInt(s.substring(1), 16));创建一个Color对象

getParameter(str); 从网页中得到参数。

For example, if this applet is specified as
<applet code="Clock" width=50 height=50>
<param name=Color value="blue">
</applet>

then a call to getParameter("Color") returns the value "blue".

MediaTracker 可控制组件加载对象的过程,
比如在Applet中,图象加载是边加载边显示,我们可用MediaTracker来加载,使得可等到图象全部加载完再显示。

7.Re:[求助]有几个东东不太明白 [Re: ljy0000] Copy to clipboard
Posted by: why
Posted on: 2004-10-18 18:05

ljy0000 wrote:
你应该是在Applet中看到的。
new Color(Integer.parseInt(s.substring(1), 16));创建一个Color对象

getParameter(str); 从网页中得到参数。

For example, if this applet is specified as
<applet code="Clock" width=50 height=50>
<param name=Color value="blue">
</applet>

then a call to getParameter("Color") returns the value "blue".

I guess it's something like
<param name="myColor" value="#FFCC33">

// Applet's getParameter returns String
String s = getParameter("myColor");
// substring(1) gets rid of the #,
// Integer.parseInt(str ,radix) reads in the hex representation of color
Color c = new Color(Integer.parseInt(s.substring(1), 16));

8.Re:[求助]有几个东东不太明白 (Applet, new Color(int), getParameter, MediaTracker) [Re: battlekiller] Copy to clipboard
Posted by: kavinwang
Posted on: 2004-10-18 22:07

个个兄弟都比较厉害呀,既然大家都来了,我看我可以身退了!


   Powered by Jute Powerful Forum® Version Jute 1.5.6 Ent
Copyright © 2002-2021 Cjsdn Team. All Righits Reserved. 闽ICP备05005120号-1
客服电话 18559299278    客服信箱 714923@qq.com    客服QQ 714923