Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to convert type erasure in java generics

2025-04-02 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)05/31 Report--

Today, I would like to share with you the relevant knowledge points about type erasure conversion in java generics. The content is detailed and the logic is clear. I believe most people still know too much about this knowledge, so share this article for your reference. I hope you can get something after reading this article.

Description

1. The generic value exists during the compilation phase. When the code enters the virtual machine, the generic value will be deleted.

2. This feature is called type deletion. When generics are deleted, he has two conversion methods. The first is that if the generics do not set a type upper limit, the generics will be converted to Object types, and the second is that if the type upper limit is set, the generics will be converted to their type upper limits.

Example

/ / No upper limit public class Test1 {T t; public T getValue () {return t;} public void setVale (T t) {this.t = t;} / / specify upper limit public class Test2 {T t; public T getT () {return t;} public void setT (T t) {this.t = t }} / / get their attribute type @ Testpublic void testType1 () {Test1 test1 = new Test1 (); test1.setVale ("11111"); Class through a reflection call

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report