-4

全部在标题中。

也请在不到一周的时间内给出答复。

我需要有人真正帮助我,我正在使用在线课程,它说我必须编写 NumberBoard 方法,然后编写 NumberBoard 构造函数并调用该方法。

这是 .zip 文件的链接,其中包含告诉我该怎么做的 PDF 以及他们为您提供的项目:

https://d396qusza40orc.cloudfront.net/gameprogramming%2Frequired_assessment_materials%2FRequiredProjectMaterials.zip

(如果链接不可点击,请复制并粘贴)

要进入项目,请打开代码文件夹并单击“GameProject”事物

4

1 回答 1

0

像这样的东西会起作用

    public class SomeClass
    {
        public SomeClass() //constructor
        {
            SomeMethod(); //Calling the method in constructor
        }
        public void SomeMethod() // Method
        {
            //Method implementation
        }
    }
于 2013-10-08T06:42:43.080 回答