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.
我们有一个char和一个char[]。
char
char[]
找出 是否char位于内部的最有效(或者,如果失败,只是最简单)的方法是char[]什么?
使用的语言是 D。
谢谢!
如果它没有排序,你唯一能做的就是循环并检查每个元素,如果找到匹配则中断或返回。
char char1 = ...; char[] chars = ...; foreach(char char2; charArray) if (char2==char1) return true; return false;
如果这不能编译,请原谅我 - 我对 d 生疏了。