我想知道是否有人知道你是否可以在每次运行函数时实例化一个新对象?
Here就是我尝试做的一个例子。除此之外,如果我们不知道想要制作的物品数量,我想知道该怎么做。
基本上,每次运行一个函数时,我都希望实例化一个新对象。这可能吗?
答案 0 :(得分:1)
当然,每次调用函数时都可以有一个新对象。您可以使用Collection
(例如ArrayList
等)来存储新对象。
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace stackOverFlowAnswer
{
class Program
{
// a collection to store all objects
static ArrayList allObjects = new ArrayList();
static void Main(string[] args)
{
// Call the object creation function whenever you want
for (int i = 0; i < 5; i++)
{
createANewObject();
}
}
// function that create an object at a time
static void createANewObject()
{
YourObject newObject = new YourObject();
allObjects.Add(newObject);
}
}
// your object class
class YourObject
{
}
}