pdd 钱很多的呀,上 80 又不是没可能
找大厂投吧,薪资会高点
上海有岗位么
厉害
这个行业小白新手可以入手知识星球吗?
现在这行情金融类 也不是太行呀,找人少
这个 UI 作者是你本人吗?
发个链接出来 学习学习
dubbo-mock.jar 包 过期了,求重新更新下
Sdk 支付是前段还是后端测试呀
点赞
开源专场的 ppt 有吗?
问下:com.github.bulenkov.darcula:darcula:e208efb96f70e4be9dc362fbb46f6e181ef501dd 这个包下载不了 这边有什么好的解决方案嘛?
问下 页面显示的日志 是怎么做的呀
问下,案例执行日志展示在页面上,这个功能是怎么实现的呀?
这个用 js 拿值不是最好么,为啥还要用正则呢?求解释?
好难看!!
public Boolean isSymmetrical(String str){
if (str==null||str.trim().equals("")){
return false;
}
int length = str.length();
if (length<=1){
return false;
} else {
int index = (int) Math.floor(length / 2.0);
for (int i=0;i<index;i++){
if (str.charAt(i)==str.charAt(length-1-i)){
return true;
}else {
return false;
}
}
}
return false;
}
Scanner scanner = new Scanner(System.in);
String line = scanner.nextLine();
System.out.println(line);
FileWriter fw = null;
File file = new File("test.txt");
if (! file.exists()){
file.createNewFile();
}
fw = new FileWriter(file);
BufferedWriter bw = new BufferedWriter(fw);
bw.write(line.toUpperCase(),0,line.length());
bw.close();