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.
我在 java 中创建了一个字符数组char ab[50];来一次使用 1 个字符存储名称。然后我使用构造函数将数组转换为字符串String t=new String(ab);
char ab[50];
String t=new String(ab);
但是,如果名称是 40 个字符,那么最后 10 个字符就是000这样。任何想法如何只获得名称?
000
没问题伙计们我修好了
您可以通过用零填充数组来初始化数组。