Scala列印字串

2021-09-28 17:09:54 字數 633 閱讀 6595

(1)字串,通過+號連線

(2)printf用法:字串,通過%傳值。

(3)字串模板:通過$獲取變數值

列印字串

val username =

"zhangdan"

val userage =

20println

("使用者名稱:"

+username+

",使用者年齡:"

+userage)

scala中簡化了關於json的表達

println

(s"username=$username"

)

並且$後面還可以使用方法

println

(s"username = $"

)

scala中對列印換行也做了簡化(三個雙引號)

DbgPrint列印字串

1 直接列印字串。dbgprint hello world 2 空結尾的字串,你可以用普通得c 語法表示字串常量 char variable string hello world dbgprint s variable string 3 空結尾的寬字串 wchar 型別 wchar string w...

gdb列印字串長度設定

在使用gdb除錯過程中,經常需要檢視變數的值,最常用的方法 gdb print 一般情況下,列印並不存在問題。但當乙個字串比較長時,列印出來的內容不完整,內容的最後為 例如 gdb p char 0x23b744a98 19 0x23b744a98 obbs s 1.3 ok.這次列印已經能顯示整個...

python列印 字串前面b

python 列印字串出現 hello tf.constant hello,tensorflow 結果為 b hello,tensorflow 說明 b bytes python3.x裡預設的str是 py2.x裡的 unicode,bytes是 py2.x 的str,b 字首代表的就是bytes ...