Java apache commons-lang3 库介绍


#Java Apache Commons 库#


简介

官方网站: https://commons.apache.org/proper/commons-lang/

该库的定位:

The standard Java libraries fail to provide enough methods for manipulation of its core classes. Apache Commons Lang provides these extra methods.

Apache Commons Lang provides a host of helper utilities for the java.lang API, notably String manipulation methods, basic numerical methods, object reflection, concurrency, creation and serialization and System properties. Additionally it contains basic enhancements to java.util.Date and a series of utilities dedicated to help with building methods, such as hashCode, toString and equals.

截至 2022-05-11 :

  • 3.xx 的最新版本是 3.12.0 , package 前缀是 org.apache.commons.lang3 。
  • 2.xx 的版本, package 前缀是 org.apache.commons.lang ,不建议使用 。

( 本文完 )