Java异常处理的十个建议
前言Java异常处理的十个建议,希望对大家有帮助~
本文已上传github:
https://github.com/whx123/JavaHome
公众号:捡田螺的小男孩
一、尽量不要使用e.printStackTrace(),而是使用log打印。反例:
12345try{ // do what you want }catch(Exception e){ e.printStackTrace();}
正例:
12345try{ // do what you want }catch(Exception e){ log.info("你的程序有异常啦,{}",e);}
理由:
printStackTrace()打印出的堆栈日志跟业务代码日志是交错混合在一起的,通常排查异常日志不太方便。
e.printStackTrace()语句产生的字符串记录的是堆栈信息,如果信息太长太多,字符串常量池所在的内存块没有空间了,即内存满了,那么,用户的请求就卡住啦~
二、c ...
JDK各版本特性
前言JDK 15发布啦~ 我们一起回顾JDK 5-15 的新特性吧,大家一起学习哈~
本文已经收录到github
https://github.com/whx123/JavaHome
公众号:捡田螺的小男孩
Java 5 新特性
1. 泛型泛型本质是参数化类型,解决不确定具体对象类型的问题。
1List<String> strList=new ArrayList<String>();
2. 增强循环(for-each)for-each循环简化了集合的遍历。
1234String [] str = {"关注","公众号","捡田螺的小男孩"};for (String temp:str) { System.out.println(temp);}
3. 自动封箱拆箱
自动装箱: 就是将基本数据类型自动转换成对应的包装类。
自动拆箱:就是将包装类自动转换成对应的基本数据类型。
包装类型有:Integer,Double,Float,Long,Short,Cha ...
hexo使用说明
1、默认安装npx hexo init blogcd blognpm installnpx hexo server
2、修改主题2.1删除原来默认主题rm -rf theme2.2下载你喜欢的主题git clone -b master https://github.com/jerryc127/hexo-theme-butterfly.git themes/butterfly2.3修改主题配置vi _configtheme:butterfly
2.4这个主题需要安装插件npm install hexo-renderer-pug hexo-renderer-stylus2.5启动npx hexo server
3、publish到githubnpx hexo cleannpx hexo gnpx hexo d
4、github设置站点https://docs.github.com/cn/pages
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Quick StartCreate a new post1$ hexo new "My New Post"
More info: Writing
Run server1$ hexo server
More info: Server
Generate static files1$ hexo generate
More info: Generating
Deploy to remote sites1$ hexo deploy
More info: Deployment