永久化保存 (排行榜的写法list)

Posted satanj

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了永久化保存 (排行榜的写法list)相关的知识,希望对你有一定的参考价值。

 1  int max = PlayerPrefs.GetInt("max"), min = PlayerPrefs.GetInt("min"), cen = PlayerPrefs.GetInt("cen");
 2         3         List<int> arr = new List<int>();
 4         arr.Add(max);
 5         arr.Add(min);
 6         arr.Add(cen);
 7         arr.Add(num);
 8         arr.Sort();
 9         arr.Reverse();
10         PlayerPrefs.SetInt("max", arr[0]);
11         PlayerPrefs.SetInt("cen", arr[1]);
12         PlayerPrefs.SetInt("min", arr[2]);
13         df.text = "历史最高:" + PlayerPrefs.GetInt("max") + "
" + "第二名:" + PlayerPrefs.GetInt("cen") + "
" + "第三名:" + PlayerPrefs.GetInt("min");

 

以上是关于永久化保存 (排行榜的写法list)的主要内容,如果未能解决你的问题,请参考以下文章

排行榜的写法

Redis

如何在 Fragment 中使用 SharedPreferences 保存数据

redis特性,使用场景

导航架构片段重载问题

高并发架构基石——缓存综述