IDEA中添加断点⽆效的原因
场景2:
由于打断点的⽅法不是由⾃⼰程序打断点直接调⽤,⽽是由java原⽣类间接调⽤的,所以断点⽆效,⽰例如下:
`public class Pinyin4jUtil {
public static String getFirstSpell(String string) {
StringBuffer pybf = new StringBuffer();
char[] arr = CharArray();
HanyuPinyinOutputFormat defaultFormat = new HanyuPinyinOutputFormat();
defaultFormat.setCaseType(HanyuPinyinCaseType.LOWERCASE);
defaultFormat.setToneType(HanyuPinyinToneType.WITHOUT_TONE);
idea debugfor (int i = 0; i < arr.length; i++) {
if (arr[i] > 128) { //如果已经是字母就不⽤转换了
try {
//获取当前汉字的全拼
String[] temp = HanyuPinyinStringArray(
arr[i], defaultFormat);
if (temp != null) {
if('乾' == arr[i]){
pybf.append(temp[1].charAt(0));// 取⾸字母
}else {
pybf.append(temp[0].charAt(0));// 取⾸字母
}
}
} catch (BadHanyuPinyinOutputFormatCombination e) {
e.printStackTrace();
}
} else {
if (arr[i] >= 'a' && arr[i] <= 'z') {
arr[i] -= 32;
}
// if (arr[0] >= 'A' && arr[0] <= 'Z') {// 将⼤写转换为⼩写
// arr[0] += 32;
// }
pybf.append(arr[i]);
}
}
String();
}
public static void compare(List<WarehouseGoodsInfo> list){
Collections.sort(list, new Comparator<WarehouseGoodsInfo>() {
@Override
public int compare(WarehouseGoodsInfo o1, WarehouseGoodsInfo o2) {
return (GoodsName()))pareTo(GoodsName()));
}
});
}
public static void main(String[] args) {
List<WarehouseGoodsInfo> list = new ArrayList<>();
WarehouseGoodsInfo info = new WarehouseGoodsInfo();
info.setGoodsName("AAA");
list.add(info);
compare(list);
}
}`
在getFirstSpell⽅法打上断点,然后以Debug模式运⾏程序,此时不会进⼊到Deubg,⽽如果直接在Main⽅法中调⽤getFirstSpell⽅法,则会Debug到getFirstSpell⽅法内部
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论