当前位置: 技术问答>java相关
关于提示信息的问题?高分请教
来源: 互联网 发布时间:2015-05-12
本文导语: 其一怎么样实现提示信息类似win98那样把鼠标移上去,就可以有提示信息? 其二我究竟在什么时候才有建立接口的必要 | setToolTipText public void setToolTipText(String text)Registers the text to display i...
其一怎么样实现提示信息类似win98那样把鼠标移上去,就可以有提示信息?
其二我究竟在什么时候才有建立接口的必要
其二我究竟在什么时候才有建立接口的必要
|
setToolTipText
public void setToolTipText(String text)Registers the text to display in a tool tip. The text displays when the cursor lingers over the component.
See How to Use Tool Tips in The Java Tutorial for further documentation.
Parameters:
text - the string to display; if the text is null, the tool tip is turned off for this component
See Also:
TOOL_TIP_TEXT_KEY
public void setToolTipText(String text)Registers the text to display in a tool tip. The text displays when the cursor lingers over the component.
See How to Use Tool Tips in The Java Tutorial for further documentation.
Parameters:
text - the string to display; if the text is null, the tool tip is turned off for this component
See Also:
TOOL_TIP_TEXT_KEY
|
1.java的控件都有设置提示信息方法setToolTipText()应该,只要设置了应该没有什么问题(applet比较烦索一点)
2.当你的MyClass类不只是继承于ClassA,还要继承于ClassB和继承于ClassC,这时候ClassA,ClassB,ClassC就要用接口来实现了。
2.当你的MyClass类不只是继承于ClassA,还要继承于ClassB和继承于ClassC,这时候ClassA,ClassB,ClassC就要用接口来实现了。
|
1.一般java控件都会提供提示信息方法:setToolTipText()楼上已经说得很清楚了。
2.如果你的MyClass类,不只要继承于ClassA,还要继承于ClassB和ClassC,这时候ClassA,ClassB,ClassC必需用接口来实现(接口在java中主要用来实现多继承)。
2.如果你的MyClass类,不只要继承于ClassA,还要继承于ClassB和ClassC,这时候ClassA,ClassB,ClassC必需用接口来实现(接口在java中主要用来实现多继承)。