What is the meaning \r carriage return and \f form feed in Java?

前端 未结 4 1239
再見小時候
再見小時候 2020-12-24 15:04

What is the meaning of \\r carriage return and /f form feed in Java? Can anyone give a small example of when we have to use these types of symbols?

4条回答
  •  醉梦人生
    2020-12-24 15:57

    \f is similar to \n, the difference is that the new line gets indented.

    eg: "hello it was \f great meeting you"

    it gives output:

     hello it was 
                  great meeting you 
    

提交回复
热议问题