Skip to content

Commit

Permalink
泛型Java、Kotlin对比实现
Browse files Browse the repository at this point in the history
  • Loading branch information
BetterZhang committed Jun 28, 2017
1 parent 38ee099 commit 6465186
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/com/betterzhang/learnkotlin/java/Wrapper.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Author : Andrew Zhang
* Email : betterzhang.dev@gmail.com
* Time : 2017/06/28 下午 1:12
* Desc : description
* Desc : 泛型
*/
public final class Wrapper<T> {

Expand Down
2 changes: 1 addition & 1 deletion src/com/betterzhang/learnkotlin/kotlin/Outer.kt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ package com.betterzhang.learnkotlin.kotlin
* Author : Andrew Zhang
* Email : betterzhang.dev@gmail.com
* Time : 2017/06/28 上午 10:50
* Desc : description
* Desc : 静态与非静态内部类
*/
class Outer {

Expand Down
2 changes: 1 addition & 1 deletion src/com/betterzhang/learnkotlin/kotlin/Wrapper.kt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ package com.betterzhang.learnkotlin.kotlin
* Author : Andrew Zhang
* Email : betterzhang.dev@gmail.com
* Time : 2017/06/28 下午 1:18
* Desc : description
* Desc : 泛型
*/
class Wrapper<T>(val item: T)

Expand Down

0 comments on commit 6465186

Please sign in to comment.