/** * 输入两个参数字符串,判断第二个字符串参数师是否是A级别的宝石类型,统计计数宝石类型的具体石头数量 * 字符串大小写都符合要求 * @param aLevIndexStr * @param bunosCheckStr * @return */ public static int getBunosCountIsGodenCheckALeve(String aLevIndexStr,String bunosCheckStr){ if (aLevIndexStr==null){ return 0; } if (aLevIndexStr.isEmpty()){ return 0; } if ...