博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Java基础 println print 实现输出换行
阅读量:5375 次
发布时间:2019-06-15

本文共 1717 字,大约阅读时间需要 5 分钟。

  •     JDK :OpenJDK-11
  •      OS :CentOS 7.6.1810
  •      IDE :Eclipse 2019‑03
  • typesetting :Markdown

code

package per.jizuiku.base;/** * @author 给最苦 * @date 2019/06/29 * @blog www.cnblogs.com/jizuiku */class Demo {    /**     * @param args     */    public static void main(String[] args) {        // 输出后 换行        System.out.print("hello world");        System.out.println();        System.out.print("hello world" + "\n");        System.out.print("hello world");        System.out.print(" end");    }}

result

hello worldhello worldhello world end

sourceCode

/**    * Terminates the current line by writing the line separator string.  The    * line separator string is defined by the system property    * {@code line.separator}, and is not necessarily a single newline    * character ({@code '\n'}).    */public void println() {    newLine();}
/**    * Prints a string.  If the argument is {@code null} then the string    * {@code "null"} is printed.  Otherwise, the string's characters are    * converted into bytes according to the platform's default character    * encoding, and these bytes are written in exactly the manner of the    * {@link #write(int)} method.    *    * @param      s   The {@code String} to be printed    */public void print(String s) {    write(String.valueOf(s));}

resource

  • [ JDK ] openjdk.java.net
  • [ doc - 参考 ] docs.oracle.com/en/java/javase/11
  • [ 规范 - 推荐 ] yq.aliyun.com/articles/69327
  • [ 规范 - 推荐 ] google.github.io/styleguide
  • [ 源码 ] hg.openjdk.java.net
  • [ OS ] www.centos.org
  • [ IDE ] www.eclipse.org/downloads/packages
  • [ 平台 ] www.cnblogs.com


感谢帮助过 给最苦 的人们。

Java、Groovy和Scala等基于JVM的语言,优秀,值得学习。
规范的命名和代码格式等,有助于沟通和理解。
JVM的配置、监控与优化,比较实用,值得学习。

转载于:https://www.cnblogs.com/jizuiku/p/11107747.html

你可能感兴趣的文章
PHP异常处理机制
查看>>
android ReactNative之Cannot find entry file index.android.js in any of the roots
查看>>
bzoj2143 飞飞侠
查看>>
Visual Studio 2015安装包
查看>>
ABP框架入门踩坑-配置数据库表前缀
查看>>
Java虚拟接和Dalvik虚拟机的区别
查看>>
LeetCode19 Remove Nth Node From End of List
查看>>
关于MVC的一些思考
查看>>
解决win7系统的网络图标显示红叉,但是网络正常的情况。
查看>>
js BOM &&事件
查看>>
NYOJ116 士兵杀敌(二)线段树
查看>>
My Vim配置
查看>>
BI建模原则和常见问题
查看>>
微分几何在机器人领域的应用(一)
查看>>
洛谷P1501 [国家集训队]Tree II
查看>>
软件工程——结对作业(First)
查看>>
浅谈分布式事务原理及其应用场景
查看>>
R语言:读取数据
查看>>
Microsoft .NET Framework 4 安装 1603错误的解决
查看>>
【转载】MySQL调优脚本tuning-primer.sh使用说明
查看>>