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作业。我需要列出所有名字以字母“P”开头的学生的名字(学生的名字在一个叫做名字的数组中)。我试过使用 if(names[m].startsWith("P")); 但我还没有让它工作。有没有办法解决这个问题?
提前致谢。
尝试使用charAt(int index)String 方法。–if语句看起来像:
charAt(int index)
if
... if(names[m].charAt(0) == 'P') ...