码迷,mamicode.com
首页 > 其他好文 > 详细

不用main方法,也可以打印helloworld

时间:2015-04-29 11:50:31      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:helloworld   对象   实例   java   

package com.ray.object;

/**
 * 不用main方法,也可以打印Hello World!
 * 
 * @author ray
 * @since 2015-04-29
 * @version 1.0
 * 
 */
public class Person {
	static {
		System.out.println("Hello World!");
		System.exit(0);
	}

	// 由于使用ide,有main方法执行更方便
	public static void main(String[] args) {

	}
}

不用main方法,也可以打印helloworld

标签:helloworld   对象   实例   java   

原文地址:http://blog.csdn.net/raylee2007/article/details/45362745

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!