我不知道如何开始编写java代码进行打印 不使用任何内置函数的字符串,如println等。
有谁知道如何写它?
答案 0 :(得分:0)
我不会粘贴您在此处阅读的所有文章:http://luckytoilet.wordpress.com/2010/05/21/how-system-out-println-really-works/
但请阅读并查看“原生”字词的重复。
然后你可以跳到另一篇文章:What is a native implementation in Java?
然后,你会假设你不能在不使用任何本机函数的情况下写入处理标准流(或错误),因为你需要在不同的操作系统上运行的东西......这就是JVM的目标。
答案 1 :(得分:-1)
您可以使用PrintWriter类
编写它PrintWriter printWriter = new PrintWriter(System.out);
printWriter.write("Hello");
printWriter.flush();
printWriter.close();