C#中的out string关键字与ref引用区别,INI文件操作方法
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Runtime.InteropServices; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace Csharp_INI_File_Operation_demo { public partial class Form1 : Form { public Form1() { InitializeComponent(); } [DllImport("kernel32.dll")] private static extern long WritePrivateProfileString(string section, string key, string value, string filepath); [DllImport("kernel32.dll")] private static extern int GetPrivateProfileString(string section, string key, string def, StringBuilder returnvalue, int buffersize, string filepath); private string IniFilePath; private void button_write_Click(object sender, EventArgs e) { if ((textBox_name.Text.Trim() != "") && (textBox_area.Text.Trim() != "")) { string Section = "Information"; try { WritePrivateProfileString(Section, "Name", textBox_name.Text.Trim(), IniFilePath); WritePrivateProfileString(Section, "Gender", comboBox_sex.Text, IniFilePath); WritePrivateProfileString(Section, "Age", comboBox_age.Text, IniFilePath); WritePrivateProfileString(Section, "Region", textBox_area.Text.Trim(), IniFilePath); } catch (Exception ee) { MessageBox.Show(ee.Message); } } else { MessageBox.Show("姓名或地区不能为空!", "错误", MessageBoxButtons.OK, MessageBoxIcon.Warning); } } private void Form1_Load(object sender, EventArgs e) { IniFilePath = Application.StartupPath + "\\Config.ini"; } private void GetValue(string section, string key, out string value) { StringBuilder stringBuilder = new StringBuilder(); GetPrivateProfileString(section, key, "", stringBuilder, 1024, IniFilePath); value = stringBuilder.ToString(); } private void button_read_Click(object sender, EventArgs e) { string outString; try { GetValue("Information", "Name", out outString); textBox_name.Text = outString; GetValue("Information", "Gender", out outString); comboBox_sex.Text = outString; GetValue("Information", "Age", out outString); comboBox_age.Text = outString; GetValue("Information", "Region", out outString); textBox_area.Text = outString; } catch (Exception ee) { MessageBox.Show(ee.Message); } } private void button_clear_Click(object sender, EventArgs e) { textBox_name.Text = ""; textBox_area.Text = ""; } } }
out 关键字会导致参数通过引用来传递。这与 ref 关键字类似,不同之处在于 ref 要求变量必须在传递之前进行初始化。若要使用 out 参数,方法定义和调用方法都必须显式使用 out 关键字。例如:
class OutExample
{
static void Method( out int i)
{
i = 66;
}
static void Main()
{
int value;
Method( out value);
// value is now 66
}
}
尽管作为 out 参数传递的变量不需要在传递之前进行初始化,但需要调用方法以便在方法返回之前赋值。
ref 和 out 关键字在运行时的处理方式不同,但在编译时的处理方式相同。因此,如果一个方法采用 ref 参数,而另一个方法采用 out 参数,则无法重载这两个方法。例如,从编译的角度来看,以下代码中的两个方法是完全相同的,因此将不会编译以下代码:
复制代码
class CS0663_Example
{
// compiler error CS0663: "cannot define overloaded
// methods that differ only on ref and out"
public void SampleMethod( out int i) { }
public void SampleMethod(ref int i) { }
}
但是,如果一个方法采用 ref 或 out 参数,而另一个方法不采用这两类参数,则可以进行重载,如下所示:
复制代码
class RefOutOverloadExample
{
public void SampleMethod(int i) { }
public void SampleMethod( out int i) { }
}
备注
属性不是变量,因此不能作为 out 参数传递。
有关传递数组的信息,请参见使用 ref 和 out 传递数组。
示例
当希望方法返回多个值时,声明 out 方法很有用。使用 out 参数的方法仍然可以将变量用作返回类型(请参见 return),但它还可以将一个或多个对象作为 out 参数返回给调用方法。此示例使用 out 在一个方法调用中返回三个变量。请注意,第三个参数所赋的值为 Null。这样便允许方法有选择地返回值。
复制代码
class OutReturnExample
{
static void Method( out int i, out string s1, out string s2)
{
i = 66;
s1 = "I've been returned";
s2 = null;
}
static void Main()
{
int value;
string str1, str2;
Method( out value, out str1, out str2);
// value is now 66
// str1 is now "I've been returned"
// str2 is (still) null;
}
}