2020
09-28
09-28
JDK14的新特性:instanceof模式匹配的使用
JDK14在2020年的3月正式发布了。可惜的是正式特性只包含了最新的Switch表达式,而Records,patterns,textblocks仍然是预览特性。本文要讲的就是JDK14的一个预览特性instanceof的patternmatching。也就是说在instanceof中可以使用模式匹配了。怎么理解呢?我们先举个历史版本中使用instanceof的例子。假如我们是动物园的管理员,动物园里面有Girraffe和Hippo两种动物。@DatapublicclassGirraffe{privateStringname;}@Datapu...
继续阅读 >