Board logo

标题: 求 4.11 书55页 4小题答案 [打印本页]

作者: yqxmoon    时间: 2009-11-18 23:15     标题: 求 4.11 书55页 4小题答案

如题,想请教下,out参数和ref参数什么时候能用上呢?
作者: dorient    时间: 2009-11-20 08:42

out和ref参数都能够直接修改参数本身的值,如果你想在函数中,修改它的参数的值,就可以使用out或ref参数。

void Computer(int number,ref int sum)
{
for(int i = 0; i < number; i++)
{
sum += i;
}
}

该函数执行之后,sum参数的值已经被修改。
作者: yqxmoon    时间: 2009-11-27 13:44

非常感谢!!:




欢迎光临 万卷图书 (http://wanjuanchina.net/) Powered by Discuz! 7.0.0