Skip to content

Commit

Permalink
feat:1.4.0 支持继承模型
Browse files Browse the repository at this point in the history
  • Loading branch information
NBXXF committed Dec 15, 2023
1 parent f3b7f86 commit 287f206
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@ Table of Contents
=================

* [gson\_plugin](#gson_plugin)
* [主要方向](#主要方向)
* [框架特性](#框架特性)
* [主要方向](#主要方向)
* [框架特性](#框架特性)
* [速度对比](#速度对比)
* [注解解释](#注解解释)
* [仓库权限](#仓库权限)
* [KAPT\-support](#kapt-support)
* [用法](#用法)
* [KSP\-Support](#ksp-support)
* [已知问题](#已知问题)
# gson_plugin
gson_plugin是一个注解处理器,能够在编译期自动生成**兼容Kotlin特性的****高性能TypeAdapter**,以提升Gson的序列化与反序列化时间性能。同时也解决了kotlin默认值的问题.平均**比原始Gson快10倍**
## 主要方向
Expand Down Expand Up @@ -336,3 +337,6 @@ ksp {
```
</details>

# 已知问题
1. final/val 属性不能声明在body中(由于不是反射,要么就舍弃了,现在还是框架不让这么写,欢迎写成var)
2. 继承模型,父类属性不能包含final/val 修饰 (由于不是反射,要么就舍弃了,现在还是框架不让这么写,欢迎写成var)

0 comments on commit 287f206

Please sign in to comment.