Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试存储一个非常大的字符串,我最终会将其转换为字符数组以对单个字符执行操作。字符串最长可达 100 万个字符。到目前为止,我使用普通字符串来执行我的工作,但它不适用于如此大的字符串。我可以使用什么内置类?
我不知道你为什么认为你不能有这么大的字符串。无论如何,您可能希望在将数据转换为字符数组之前将该数据存储在字符串中,因为您想修改它。
如果您只想将数据附加到它,您可以使用 aStringBuilder来有效地构建您的字符串,然后将其转换为字符数组。
StringBuilder