所以,想象一下,我有一个
List<String> colours = {"blue", "red, "green", "yellow}
还有一个:
List<String> desiredColours = {"black", "red", "yellow", "white" }
如果我想知道desiredColours
中的哪种颜色在'colours``中怎么办?
我可以用双for
来做,但我想知道是否已经存在已经存在的Java函数。或者至少有点像
for ( String colour : desiredColours ){
if (colourisIn(colour, colours)){
res.add(colour)
}
}