我有一个数组,如果它在数组中,我想检查最后一位数字。
例子:
String[] types = {".png",".jpg",".gif"}
String image = "beauty.jpg";
// Note that this is wrong. The parameter required is a string not an array.
Boolean true = image.endswith(types);
请注意:我知道我可以使用 for 循环检查每个单独的项目。
我想知道是否有更有效的方法来做到这一点。原因是图像字符串已经在不断变化的循环中。