作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试创建一个类,用户可以在其中修改成员变量以更改其成员函数的默认参数。
class Class
{
public int Member;
public void Method(int Argument = Member)
{
// This compiles fine, until I try to actually use
// the method elsewhere in code!
// "Error: need 'this' to access member Member"
}
}
到目前为止,我的解决方法是使用魔数(Magic Number),这显然并不理想。
public void Method(int Argument = 123)
{
int RealArgument;
if (Argument == 123) RealArgument = Member;
else RealArgument = Argument;
}
有更好的方法吗,还是我一直坚持这个“黑客”解决方案?
最佳答案
是的,忘记默认参数。
class Class
{
public int Member;
public void Method(int Argument)
{
...
}
public void Method()
{
Method(Member);
}
}
这里不需要欺骗。
关于parameters - 有没有办法拥有动态默认参数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7713916/
我是一名优秀的程序员,十分优秀!