Netbeans6.9.1怎么像editplus那样编译程序啊?讲详细点,我才开始学,最好举个例子如输出hi、
展开全部
文件->新建项目->java->java应用程序,项目名称:Hello,创建主类:hello.Hello,->完成
则完成啦项目的建立,并在编辑区创建啦Hello主类,具体如下:
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package hello;
/**
*
* @author top
*/
public class Hello {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
}
}
已自动生成啦main()
在main()中,输入 sout + Tab,则System.out.println("");
这是快捷方式,有关其他的快捷方式可在 帮助->快捷键列表 中找到
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package hello;
/**
*
* @author top
*/
public class Hello {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
System.out.println("Hi,你好!");
}
}
运行文件,可在编辑区右击->运行文件
或 运行->运行项目
NetBeans在编辑这块最大的优点就是它提供啦很多快捷方式,便于开发。。。
则完成啦项目的建立,并在编辑区创建啦Hello主类,具体如下:
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package hello;
/**
*
* @author top
*/
public class Hello {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
}
}
已自动生成啦main()
在main()中,输入 sout + Tab,则System.out.println("");
这是快捷方式,有关其他的快捷方式可在 帮助->快捷键列表 中找到
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package hello;
/**
*
* @author top
*/
public class Hello {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
System.out.println("Hi,你好!");
}
}
运行文件,可在编辑区右击->运行文件
或 运行->运行项目
NetBeans在编辑这块最大的优点就是它提供啦很多快捷方式,便于开发。。。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询