用泛型处理简单SharedPreferences数据获取与存储
发表于更新于
广州
开发android用泛型处理简单SharedPreferences数据获取与存储
❄️2winter android中封装SharePreference可以使用这种方法。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
| import com.sun.org.apache.xpath.internal.operations.Bool import kotlin.reflect.KFunction
object Toperator{
fun<T> getT(getType:T):T?{ var res:T? = null when(getType){ is Int ->{ res = getType println("获取整形:$getType") } is String ->{ res = getType println("获取字符串:$getType") } is Boolean ->{ res = getType println("获取布尔:$getType") } is Double ->{ res = getType println("获取双精度:$getType") } else ->{ println("类型不匹配!") }
} return res }
fun<T> setT(saveT:T):Toperator{ when(saveT){ is Int ->{ println("存储整形:$saveT") } is String ->{ println("存储字符串:$saveT") } is Boolean ->{ println("存储布尔:$saveT") } else ->{ print("数据类型不匹配!") } } return Toperator }
}
fun main(args:Array<String>){
arrayOf( Toperator.getT("0"), Toperator.getT(0), Toperator.getT(1.0), Toperator.setT(arrayListOf(""))) Toperator.setT(1111).setT("111").setT(true).setT(arrayListOf(""))
}
|
❄️2winter
ReactNative FullStack Developer
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 ❄️2winter!