当前位置: 技术问答>java相关
一个初学者的求助!
来源: 互联网 发布时间:2015-04-21
本文导语: 在vj6.0中写了这么一段程序 /** * This class can take a variable number of parameters on the command * line. Program execution begins with the main() method. The class * constructor is not invoked unless an object of type 'Class1' * cre...
在vj6.0中写了这么一段程序
/**
* This class can take a variable number of parameters on the command
* line. Program execution begins with the main() method. The class
* constructor is not invoked unless an object of type 'Class1'
* created in the main() method.
*/
public class yu
{
int i=5;
void f()
{
System.out .println (i);
}
/**
* The main entry point for the application.
*
* @param args Array of parameters passed to the application
* via the command line.
*/
public static void main (String[] args)
{
// TODO: Add initialization code here
yu da=new yu;
da.f ;
}
}
编译运行后提示
错误:未能执行yu:系统找不到指定的文件。按任意键退出……
这是为什么呀,我只是写了一个简单的语句呀,这样也会出现问题,好打击我的积极性哦,j++真的这么难学么?
/**
* This class can take a variable number of parameters on the command
* line. Program execution begins with the main() method. The class
* constructor is not invoked unless an object of type 'Class1'
* created in the main() method.
*/
public class yu
{
int i=5;
void f()
{
System.out .println (i);
}
/**
* The main entry point for the application.
*
* @param args Array of parameters passed to the application
* via the command line.
*/
public static void main (String[] args)
{
// TODO: Add initialization code here
yu da=new yu;
da.f ;
}
}
编译运行后提示
错误:未能执行yu:系统找不到指定的文件。按任意键退出……
这是为什么呀,我只是写了一个简单的语句呀,这样也会出现问题,好打击我的积极性哦,j++真的这么难学么?
|
你怎么还在用vj?
是不是这里有错误?
yu da=new yu;
da.f
应为yu da= new yu();
da.f();
是不是这里有错误?
yu da=new yu;
da.f
应为yu da= new yu();
da.f();