java
xwdok
这个作者很懒,什么都没留下…
展开
-
JAVA exception
Overall typesObject --> Throwable --> Exception --> ErrorError is not usually used in app. It can be the errors thrown by JVM.Two types of exceptions - checked exception and run time exception.Check...原创 2020-07-06 00:22:00 · 298 阅读 · 0 评论 -
JAVA enum
List of points:The enum in JAVA is in fact a special class Each constant in the enum is an instance. The instance is implictly the 'static' and 'public' The (implicit) constructor of the enum is private and so user can never construct a new enum const原创 2020-06-30 10:24:08 · 276 阅读 · 0 评论 -
JAVA executor
In general, there are 3 interfaces for the executors.executor executorservice (extends the above) scheduledexecutorservice (extends the above) executorservice and scheduledexectutorservice are mostly used. executor is abstract.Executor ..原创 2020-06-27 00:54:27 · 260 阅读 · 0 评论