本帖最后由 完美恋爱 于 2013-10-17 10:53 编辑
import java.io.*;
class My
{
public static void main(Stringp[] args) throws IOException
{
method();
}
public static void method() throws IOException
{
File f = new File("aaa.txt");
sop("create:" + f.createNewFile());
}
}
请问这里的sop是做什么用的啊?在哪个包里啊?
|