class RunCount
{
public static void main(String[] args) throws IOException
{
Properties prop = new Properties();
File file = new File("count.ini");
if (!file.exists())
file.createNewFile();
FileInputStream fis = new FileInputStream(file);
prop.load(fis);
int count = 0;
String value = prop.getProperty("time");
if (value != null)
{
count = Integer.parseInt(value);
if (count>=5)
{
System.out.println("你好,次数已到。");
return ;
}
}
count++;
prop.setProperty("time",count+"");
FileOutputStream fos = new FileOutputStream(file);
prop.store(fos,"");
fis.close();
fos.close();
}
}
在这个给软件设计配置次数的题目中,我不太清楚这个return的用法。有几个问题吧:
第一:这是主函数,没有返回值类型,怎么会有retrun语句?不是有了返回值类型才会用return返回那个值吗?
第二:这里return既然没有返回值,那么他返回的是什么?
第二:这里的return用和不用有什么区别啊?我没用一样提示次数已到,得到了配置文件。
|