• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
 






wxiaoqi

 
 

Powered by 博客园
博客园 | 首页 | 新随笔 | 联系 | 订阅 订阅 | 管理

[置顶] 优雅的Java工具库Lombok
摘要: 优雅的Java工具库Lombok 最近在公司的项目中看到了对于Lombok的应用,通过@Data注解标注POJO,省略了大量的getter/setter代码,原先冗长的POJO在瘦身之后直接变得干净、清爽,程序员再也不需要去关注那些长长的方法,只需要集中注意力于字段field之中 Lombok简介 阅读全文
posted @ 2018-08-19 16:17 wxiaoqi 阅读(2305) 评论(3) 推荐(2)
 

2018年10月3日

【Leetcode】11. Container With Most Water (medium)
摘要: 11. Container With Most Water (medium) 描述 Given n non negative integers a1, a2, ..., an , where each represents a point at coordinate (i, ai). n verti 阅读全文
posted @ 2018-10-03 17:49 wxiaoqi 阅读(223) 评论(0) 推荐(0)
 

2018年10月2日

【Leetcode】15. 3Sum (medium)
摘要: 15. 3Sum (medium) 描述 Given an array of n integers, are there elements a, b, c in such that a + b + c = 0? Find all unique triplets in the array which 阅读全文
posted @ 2018-10-02 00:29 wxiaoqi 阅读(323) 评论(0) 推荐(0)
 

2018年8月26日

【Leetcode】73.SetMatrixZeroes(medium)
摘要: 描述 Given a m × n matrix, if an element is 0, set its entire row and column to 0. Do it in place. Follow up: Did you use extra space? A straight forwar 阅读全文
posted @ 2018-08-26 10:11 wxiaoqi 阅读(122) 评论(0) 推荐(0)
 

2018年8月25日

Netty源码阅读系列之源码导入eclipse
摘要: 下载 github地址: "点击下载netty" 目前github中netty的版本为4.1 编译 打开下载的源码所在目录,执行命令: 出现checkstyle问题。CheckStyle是maven的一个模块用以检测代码风格的,比如缩进是使用空格还是Tab,netty使用它来规范代码格式,避免低级语 阅读全文
posted @ 2018-08-25 12:31 wxiaoqi 阅读(2004) 评论(0) 推荐(0)