- 授权协议: Apache
- 开发语言: Java ActionScript
- 操作系统: 跨平台
- 软件首页: http://emitrom.com/flex4j
软件介绍
Flash4j 可以让你用 Java 语言来编写 Flash 应用,提供数以百种的 UI 控件。你可把它当成是 Adobe Flex 的 Java 语言封装。
示例代码:
Button button =
new
Button(
"Click me"
);
button.addEventHandler(MouseEvent.CLICK,
new
EventHandler() {
@Override
public
void
onEvent(Event event) {
Alert.show(
"Hello, Flex"
,
"Greetings"
);
}
});
// center the button
button.setCentered();
Effective Java
Joshua Bloch / Addison-Wesley Professional / 2018-1-6 / USD 54.99
The Definitive Guide to Java Platform Best Practices—Updated for Java 9 Java has changed dramatically since the previous edition of Effective Java was published shortly after the release of Jav......一起来看看 《Effective Java》 这本书的介绍吧!
