Reports local variable of wrapper type though all usages allowed to be primitive and count of unnece
休言女子非英物,夜夜龙泉壁上鸣。这篇文章主要讲述Reports local variable of wrapper type though all usages allowed to be primitive and count of unnece相关的知识,希望能为你提供帮助。
Reports local variable of wrapper type though all usages allowed to be primitive and count of unnecessary boxing/unboxing operations reduces
报告包装器类型的局部变量,尽管所有使用情况都允许是原始用法,并且不必要的装箱/拆箱操作的次数减少了
这个警告是说,尽量使用基本数据类型,这样就能减少装箱/拆箱操作了。
类似的例子:
......Boolean hs=false; for(var it:collect){ if(it.getYear==2020){ hs=true; ..... } } if(!hs){ ...... } .......
改成基本数据类型就行了,比如int
......int hs=0; for(var it:collect){ if(it.getYear==2020){ hs=1; ..... } } if(hs==0){ ...... } .......
【Reports local variable of wrapper type though all usages allowed to be primitive and count of unnece】
推荐阅读
- uni-app组件的生命周期 / and 页面生命周期
- 建立Azure Dev Ops持续集成和持续交付(CICD)(准备好Azure Web App资源)
- djangorestframework开发最完美手机购物商城APP带前后端源码
- [转] dynamic DMA mapping
- 安卓目录理解 —— AndroidMainifest.xml
- mapper.xml中常用sql
- Servlet认证过滤器介绍和用法详解
- Servlet中的属性介绍
- Servlet开发 | Servlet教程介绍