literals中文翻譯,literals是什么意思,literals發(fā)音、用法及例句
1、literals
literals發(fā)音
英: 美:
literals中文意思翻譯
常見(jiàn)釋義:
n.誤?。╨iteral的復數)
literals雙語(yǔ)使用場(chǎng)景
1、objects interoperate with typed arrays, array literals can initialize typed arrays as well with a few restrictions.───對象與類(lèi)型化數組相互作用,因此數組標識符在一些限制條件下也可以初始化類(lèi)型化數組。
2、Function literals are "anonymous" functions.───字面函數也就是“匿名”函數。
3、Most often, an alias abbreviates literals.───別名通常只是單純的縮寫(xiě)。
4、This text specifies the code, along with the literals and objects, that you can use when this code snippet is inserted into a project.───此文本用于指定在將此代碼段插入到項目中時(shí)可以使用的代碼以及文本和對象。
5、When invoked from within a script, it is usually more desirable (and practical) to specify variables rather than literals.───當從腳本中調用AdminTask命令時(shí),用戶(hù)通常更期望(和實(shí)際需要)為命令參數指定變量而不是文本。
6、Just as with any constant, all references to the individual values of an enum are converted to numeric literals at compile time.───與任何常量一樣,對枚舉中各個(gè)值的所有引用在編譯時(shí)均將轉換為數值文本。
7、But using parameter markers is not always better than using literals (explicit values).───但使用參數標記并不總是比使用文本(顯式值)更好。
8、Externalize strings and literals.───外部化字符串和文本。
9、Length also describes the length of the formatted string , including input characters , literals, and prompt characters .───還描述帶格式字符串的長(cháng)度,包括輸入字符、原義字符和提示字符。
literals相似詞語(yǔ)短語(yǔ)
1、nephelite syenite───霞石正長(cháng)巖
2、baculite section───桿狀剖面
3、scapolite gem───方柱石寶石
4、crocidolite sds───青石棉sds
5、satellites visible tonight───今晚可以看到衛星
6、satellite radio───衛星廣播;衛星收音機
7、crystallite baths───微晶浴
8、polite behavior───禮貌行為
9、liter abbreviation───升縮寫(xiě)
10、amygdalite chronique───慢性扁桃體炎
2、String存儲字符串長(cháng)度有限制嗎?有的話(huà)是多少呢?
String內部是以char數組的形式存儲,數組的長(cháng)度是int類(lèi)型,那么String允許的最大長(cháng)度就是Integer.MAX_VALUE了。又由于java中的字符是以16位存儲的,因此大概需要4GB的內存才能存儲最大長(cháng)度的字符串。不過(guò)這僅僅是對字符串變量而言,如果是字符串字面量(string literals),如“abc\"、\"1a2b\"之類(lèi)寫(xiě)在代碼中的字符串literals,那么允許的最大長(cháng)度取決于字符串在常量池中的存儲大小,也就是字符串在class格式文件中的存儲格式: CONSTANT_Utf8_info { u1 tag; u2 length; u1 bytes[length]; } u2是無(wú)符號的16位整數,因此理論上允許的string literal的最大長(cháng)度是2^16-1=65535。然而實(shí)際測試表明,允許的最大長(cháng)度僅為65534,超過(guò)就編譯錯誤了.
版權聲明: 本站僅提供信息存儲空間服務(wù),旨在傳遞更多信息,不擁有所有權,不承擔相關(guān)法律責任,不代表本網(wǎng)贊同其觀(guān)點(diǎn)和對其真實(shí)性負責。如因作品內容、版權和其它問(wèn)題需要同本網(wǎng)聯(lián)系的,請發(fā)送郵件至 舉報,一經(jīng)查實(shí),本站將立刻刪除。