Is it necessary to use static void main()
as the entry point function in C#, or can we use some othe开发者_JAVA技巧r function?
Why is main()
static?
Before C# 9, the entry point had to be declared explicitly. C# 9 introduces top level statements which allow the entry point to be generated implicitly. (Only a single source file in a project can include top-level statements, however.)
When the entry point is declared explicitly, it has to be Main
. It's static because otherwise the CLR would need to worry about creating an instance of the type - which means you'd presumably have to have a parameterless constructor, even if you didn't want an instance of the type, etc. Why would you want to force it to be an instance method?
Even with top-level statements, your actual program still has an entry point called Main
- it just doesn't appear in your source code.
Yes, for a C# application, Main()
must be the entry point.
The reason is because that's what the designers of the language decided to be what to look for as an entry point for your program. They could just as well have used a totally different approach to find the entry point, e.g. using meta data, or instantiating an object for you (which would require a parameterless constructor). Another reason for naming it void main()
is that it's intuitive for users coming from other languages.
static void Main()
is the necessary entry point for any "Executable" (.EXE) to be created in C#. A library (or .DLL) can have other entry points.
The method is static because that is required in order to access the method without having an instance of the object to address. In order to invoke the method (starting point) from outside the application, a static method is required.
Since C# 9 you can now remove the boilerplate through Top-level statements.
Before:
using System;
namespace HelloWorld
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
}
}
Newly possible:
using System;
Console.WriteLine("Hello World!");
Source: https://learn.microsoft.com/en-us/dotnet/csharp/whats-new/csharp-9#top-level-statements
If you insist on using the Main function as the entry point, more information can be found here
The required entry point is actually:
static void Main(string[] args); // note capitalization and arguments
The reason that Main
must be static is that non-static objects must be constructed before you call any methods on them. Since Main
is the entrance point of the program, who's going to call its constructor?
(Yes, you could have the CLR require that the class with Main
contain a default parameterless constructor, and make the CLR call that constructor during global startup. But that's extra work, and in practice it's easier to just require that Main
be static.)
The Main
method might be what you consider as the entry point of an application but in c# as far as i know methods can't be defined directly in namespaces which means it has to be within a class. The real first executed thing then is the static constructor of the class containing the Main
method
using System;
namespace test
{
class Program
{
static Program()
{
Console.WriteLine("static constructor");
}
public static void Main(string[] args)
{
Console.WriteLine("Main method");
}
}
}
Outputs static constructor
first and then Main method
static int Main(string[] args)
is static because it reduces the number of potential steps the runtime needs to go through before it can start executing the entry point of your program (run class's static constructor, run class's static Main... versus run class's static constructor, instantiate the class into some location that's undefined, run instance's constructor, then run instance's Main method). You'd have to write boilerplate code to store this
into an instance variable you could use (and likely to keep it from going out of referential scope which would enable it to be garbage-collected) which would also tend to increase the reference count and require a little more memory and pricessing for not much gain.
It's named Main because C# is strongly reminiscent of Java in its design, and Java uses the name Main, which itself derives from a slight differentiation (case is a thing!) from C and C++.
精彩评论