Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

C#: calling non static member function without creating object

While going through a codebase, I ran into a statement similar to the following:

new Class().MemberFunction();

What is this statement actually doing? Is it calling the member function without creating an object of this class?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

It is creating a new instance of Class - as you can clearly see the new Class() part of the code - the only thing that's not "usual" about it is that it doesn't store the reference to that instance, but just use it to call the MemberFunction();.

This means that whoever wanted to execute the MemberFunction() did not need to keep the reference to the specific instance (which in turn, might mean that the MemberFunction() should be converted to a static method, but there's not enough information to know for sure).


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...