gpt4 book ai didi

c# - 类方法可以为类的每个实例使用不同的代码吗?

转载 作者:太空宇宙 更新时间:2023-11-03 20:19:53 25 4
gpt4 key购买 nike

我想创建一个带有成员函数(例如 giveCharity)的类(例如 Person),但我希望该方法的内容对于类的每个实例都是不同的,模仿人工智能。这可能吗?何时以及如何为每个实例的方法填充代码?

这是一个例子:

public class Person
{
// data members
private int myNumOfKids;
private int myIncome;
private int myCash;

// constructor
public Person(int kids, int income, int cash)
{
myNumOfKids = kids;
myIncome = income;
myCash = cash;
}

// member function in question
public int giveCharity(Person friend)
{
int myCharity;
// This is where I want to input different code for each person
// that determines how much charity they will give their friend
// based on their friend's info (kids, income, cash, etc...),
// as well as their own tendency for compassion.
myCash -= myCharity;
return myCharity;
}
}

Person John = new Person(0, 35000, 500);
Person Gary = new Person(3, 40000, 100);

// John gives Gary some charity
Gary.myCash += John.giveCharity(Gary);

最佳答案

我想到了两种主要方法:

1) 给每个人一个定义函数的委托(delegate):

public Func<int> CharityFunction{get;set;}

然后你只需要弄清楚如何设置它,并确保在使用它之前总是设置它。调用它只需说:

int charityAmount = CharityFunction();

2) 使Person 成为抽象 类。添加一个抽象函数,例如 int getCharityAmount()。然后创建新的子类型,每个子类型都提供该抽象函数的不同实现。

至于使用哪个,更多的是看具体情况。你有很多不同的功能定义吗?第一个选项添加一个新选项花费的精力更少。创建对象后函数是否会改变?第二种选择是不可能的,只有第一种。您是否经常重复使用相同的功能?在这种情况下,第二种选择更好,这样调用者就不会不断地重新定义相同的一小部分函数。第二个也更安全一些,因为函数总是有一个定义,而且你知道一旦对象被创建,它就不会被改变,等等。

关于c# - 类方法可以为类的每个实例使用不同的代码吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14327038/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com