Android - 快速有效地清理字符数组

发布于 2024-11-29 05:59:44 字数 139 浏览 0 评论 0原文

是否可以快速有效地清理 Java(Android)中的 char 数组?在治疗上进行另一个循环似乎对于优化解决方案来说太重了,不是吗?

这很奇怪,但如果不订阅付费网站,就不可能在互联网上找到这样的 Java 解决方案。

感谢您的关注

Is it possible to clean a char array in Java (Android) quickly and effectively? Make an other loop on the treatment seem to be to much heavy to be an optimised solution, doesn't it ?

It's strange but it is impossible to find such a solution in Java on the internet without having to subscribe to a pay site ..

Thank's to your attention

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

一身仙ぐ女味 2024-12-06 05:59:44

您可以使用:

Arrays.fill(yourArray, ' ');// or any other char instead of ' '

Arrays 类属于 java.util 包。它使用泛型,因此您可以填充任何类型的数组。

You can use:

Arrays.fill(yourArray, ' ');// or any other char instead of ' '

Arrays class belongs to the java.util package. It uses generics so you can fill any kind of array.

巨坚强 2024-12-06 05:59:44

为什么首先需要清除 char 数组?

大多数需要 char 数组在其中放入一些数据的函数(IO 读取等)都会返回放入的数据的长度,因此您可以忽略 char 数组中的其余数据。

Why do you need to clear a char array in the first place?

Most functions that want a char array to put some data in it (IO read, etc..) return the length of data that was put in, so you can disregard the rest of the data in char array.

一枫情书 2024-12-06 05:59:44

使用布尔值来指示您的数组无效。

Use a boolean to indicate that your array is invalid.

缘字诀 2024-12-06 05:59:44

我想知道是否预先确定由各种数据大小完成的数组的大小,或者让它的大小根据接收而变化是最好的方法?这是为了实现最快的处理。
谢谢

I would like to know whether predetermine the size of an array which will be completed by various data sizes, or let it size evolve according to the reception is the best way? This is intended to have the fastest processing.
Thank's

咋地 2024-12-06 05:59:44

我认为这个问题的正确答案是通过执行以下操作将 char[] 的每个字符设置为空字符:

Arrays.fill(buffer, (char)0);

或者

Arrays.fill(buffer, '\0');

执行 Arrays.fill(buffer, '0'); 将填充所有 char[ ] 用字符“0”代替空字符。

I think the correct answer to this question is to set each character of the char[] to null character by doing:

Arrays.fill(buffer, (char)0);

Or

Arrays.fill(buffer, '\0');

Doing Arrays.fill(buffer, '0'); will fill all the char[] with the character '0' instead of the null character.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文