- 授权协议: 未知
- 开发语言: Perl
- 操作系统: OS X
- 软件首页: https://github.com/goccy/perl-motion
- 官方下载: https://github.com/goccy/perl-motion
软件介绍
PerlMotion 是一个 iOS 和 OS X 下的 Perl 开发的工具链,支持 Perl 5 . 也就是说你可以用 Perl 语言来编写 iOS 和 OS X 下的应用程序。
示例代码:
package Hello::AppDelegate;
use base 'UIApplicationDelegate';
use UIAlertView;
use UIWindow;
use UIScreen;
use Hello::ViewController;
# this method is entrypoint of your application
sub application {
my ($app) = @_;
my $alert = UIAlertView->new->init_with_title('Hello', {
message => 'Hello PerlMotion!!'
});
$alert->add_button_with_title("Button");
my $title = $alert->button_title_at_index(0);
$alert->dismiss_with_clicked_button_index(0, { animated => 1 });
$alert->show();
my $window = UIWindow->new()->init_with_frame(UIScreen->main_screen->bounds);
$window->root_view_controller(Hello::ViewController->new);
$window->root_view_controller->wants_full_screen_layout(1);
$window->make_key_and_visible;
$app->window($window);
}
零基础学Java Web开发
刘聪 编 / 机械工业出版社 / 2008-1 / 59.00元
《零基础学Java Web开发:JSP+Servlet+Sfruts+Spring+Hibernte》全面讲解Java Web应用开发的编程技术,并详细介绍Java Web开发中各种常用的技术,可作为Java Web开发技术的学习指南。 《零基础学Java Web开发:JSP+Servlet+Sfruts+Spring+Hibernte》共17章,分为3篇,其中第1~12章是基础篇,讲解了......一起来看看 《零基础学Java Web开发》 这本书的介绍吧!
