【发布时间】:2020-09-17 17:59:09
【问题描述】:
根据this answer,Java 最多可以容纳 2^31 - 1 个字符。我正在尝试进行基准测试和其他东西,所以我尝试创建大量字符串并将其写入这样的文件:
import java.io.*
fun main() {
val out = File("ouput.txt").apply { createNewFile() }.printWriter()
sequence {
var x = 0
while (true) {
yield("${++x} ${++x} ${++x} ${++x} ${++x}")
}
}.take(5000).forEach { out.println(it) }
out.close()
}
然后output.txt 文件包含这样的内容:
1 2 3 4 5
6 7 8 9 10
11 12 13 14 15
16 17 18 19 20
21 22 23 24 25
// ... 5000 lines
然后我将文件的所有内容复制到一个字符串中,以对某些函数进行一些基准测试,所以它看起来是这样的:
import kotlin.system.*
fun main() {
val inputs = """
1 2 3 4 5
6 7 8 9 10
11 12 13 14 15
16 17 18 19 20
21 22 23 24 25
// ... 5000 lines
24986 24987 24988 24989 24990
24991 24992 24993 24994 24995
24996 24997 24998 24999 25000
""".trimIndent()
measureNanoTime {
inputs.reader().forEachLine { line ->
val (a, b, c, d, e) = line.split(" ").map(String::toInt)
}
}.div(5000).let(::println)
}
文件/字符串的总字符数为 138894
字符串最多可以容纳 2147483647
但 Kotlin 代码无法编译(最后一个文件) 它会抛出编译错误:
e: org.jetbrains.kotlin.codegen.CompilationException: Back-end (JVM) Internal error: wrong bytecode generated
// more lines
The root cause java.lang.IllegalArgumentException was thrown at: org.jetbrains.org.objectweb.asm.ByteVector.putUTF8(ByteVector.java:246)
at org.jetbrains.kotlin.codegen.TransformationMethodVisitor.visitEnd(TransformationMethodVisitor.kt:92)
at org.jetbrains.kotlin.codegen.FunctionCodegen.endVisit(FunctionCodegen.java:971)
... 43 more
Caused by: java.lang.IllegalArgumentException: UTF8 string too large
这里是堆栈跟踪异常的总日志:https://gist.github.com/Animeshz/1a18a7e99b0c0b913027b7fb36940c07
【问题讨论】:
-
一般字符串的最大长度和编译类中字符串常量的最大长度可能不同。
-
@LouisWasserman 这是什么意思?它不是编译时间常数 iirc,因为它不是
const val,对吗? -
如果它出现在源代码的引号中,它是一个编译时间常数。
-
我的意思是引号和三引号。
标签: java string kotlin string-length