若是開發者想要獲取首選項中某一項的值時,能夠使用Preferences類的Get()方法實現,該方法能夠對指定鍵的值進行獲取。該方法有12種形式,下面依次進行介紹。spa
(1)Get(string, bool)方法的語法形式以下:code
public static bool Get(string key, bool defaultValue)教程
(2)Get(string, bool, string)方法的語法形式以下:開發
public static bool Get(string key, bool defaultValue, string sharedName)string
(3)Get(string, double)方法的語法形式以下:容器
public static double Get(string key, double defaultValue)語法
(4)Get(string, double, string)方法的語法形式以下:float
public static double Get(string key, double defaultValue, string sharedName)方法
(5)Get(string, float) 方法的語法形式以下:static
public static float Get(string key, float defaultValue)
(6)Get(string, float, string)方法的語法形式以下:
public static float Get(string key, float defaultValue, string sharedName)
(7)Get(string, int)方法的語法形式以下:
public static int Get(string key, int defaultValue)
(8)Get(string, int, string)方法的語法形式以下:
public static int Get(string key, int defaultValue, string sharedName)
(9)Get(string, long)方法的語法形式以下:
public static long Get(string key, long defaultValue)
(10)Get(string, long, string)方法的語法形式以下:
public static long Get(string key, long defaultValue, string sharedName)
(11)Get(string, string)方法的語法形式以下:
public static string Get(string key, string defaultValue)
(12)Get(string, string, string)方法的語法形式以下:
public static string Get(string key, string defaultValue, string sharedName)
其中,參數說明以下:
key:首選項的鍵;
defaultValue:若是鍵不存在,返回默認值。
sharedName:共享容器名稱。
注意:在Get()方法中,若是指定的鍵存在,則獲取指定的默認值。
【示例1-6】下面將獲取指定鍵的值。代碼以下:
void Preferences_Get(string key) { Preferences.Get(key, "default_value"); //獲取鍵對應的值 }