故障排除:不包含适用于入口点的静态“main”方法

本文关键字:静态 main 方法 入口 排除 包含 适用于 故障 | 更新日期: 2023-09-27 18:34:35

我正在尝试创建一个多类程序,该程序创建学生对象,然后允许您更改其中一个学生对象的未声明专业的值。

这是我的代码:

StudentApp.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PA04CoddR
{
    class StudentApp
    {
        public void Main()
        {
            DisplayTitle();
            Student firstStudent = new Student("Robert", "Codd");
            DisplayInfo(firstStudent);
            Student secondStudent = new Student("Alexander", "Clemens", "FIN");
            DisplayInfo(secondStudent);
            GetMajor(firstStudent);
            DisplayInfo(firstStudent);
            TerminateProgram();
        }
        public void DisplayTitle()
        {
            Console.WriteLine("Programming Assignment 4 - Creating a Class - Robert S. Codd");
            Console.WriteLine();
            Console.WriteLine("____________________________________________________________");
        }
        public void DisplayInfo(Student newStudent)
        {
            Console.WriteLine("Frist Name: " + newStudent.GetFirstName);
            Console.WriteLine("Last Name: " + newStudent.GetLastName);
            Console.WriteLine("Major: " + newStudent.GetMajor);
        }
        public void GetMajor(Student newStudent)
        {
            Console.WriteLine("'tHello {0} {1}", newStudent.GetFirstName, newStudent.GetLastName);
            Console.WriteLine("'tPlease enter your major: ");
            string majorIn = Console.ReadLine();
            Console.WriteLine();
            newStudent.SetMajor(majorIn);
        }
        public void TerminateProgram()
        {
            Console.WriteLine("___________________________________________________________");
            Console.WriteLine("PRESS ANY KEY TO TERMINATE...");
            Console.Read();
        }
    }
}

Student.CS

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PA04CoddR
{
    class Student
    {
        private string firstName;
        private string lastName;
        private string major;
        public Student()
        {
        }
        public Student(string firstName, string lastName)
        {
            firstName = GetFirstName;
            lastName = GetLastName;
            major = "Undeclared";
        }
        public Student(string firstName, string lastName, string major)
        {
            firstName = GetFirstName;
            lastName = GetLastName;
            major = GetMajor;
        }
        public string GetFirstName
        {
            get
            {
                return firstName;
            }
            set
            {
                firstName = value;
            }
        }
        public string GetLastName
        {
            get
            {
                return lastName;
            }
            set
            {
                lastName = value;
            }
        }
        public string GetMajor
        {
            get
            {
                return major;
            }
            set
            {
                major = value;
            }
        }
        public string SetMajor(string majorIn)
        {
            major = majorIn;
            return majorIn;
        } 
    }
}

我在 IDE 中没有列出或给出任何错误,但是一旦我尝试编译程序,它就会返回错误:"不包含适合入口点的静态'main'方法"

在这里和其他在线资源上做了一些研究,发现了一些似乎有希望解决我的问题的事情,例如将主方法更改为静态方法,但是一旦我尝试了 main 方法中的每件事都返回语法错误:"非静态字段需要对象引用, 方法或属性">

任何帮助将不胜感激,我是一名学习程序员,所以我确信这是相当简单的事情,我只是不完全理解这些概念。

故障排除:不包含适用于入口点的静态“main”方法

您的主要例程必须是静态的:

 public static void Main()
 {

但是,这样做需要您创建一个StudentApp实例:

 public static void Main()
 {
     var app = new StudentApp();
     app.DisplayTitle(); // Call method on the instance
     // Do the same for your other methods...

这是因为Main()方法使用的其他方法是实例方法,而不是静态方法。

你有这个:

public void Main()

但是你需要有这个:

public static void Main()

您的Main方法必须是静态的,将StudentApp中的其他方法也更改为静态,因为它们不使用任何实例状态。

您必须像这样将静态添加到公共 void Main 中:

public static void main(string[]args)
{
   //Your code
}

如果要使用其他类,则必须将静态添加到学生类及其所有方法以及像StudentApp这样的学生。这是因为静态方法只能调用其他静态方法。