如何使用STM8S模拟UART

2026年09月26日 09:55
有1个网友回答
网友(1):

public static boolean isNumeric(String str){
for (int i = str.length();--i>=0;){
if (!Character.isDigit(str.charAt(i))){
return false;
}
}
return true;
}