在 c# 中,要调用另一个类中的方法,需要:创建另一个类,包含要调用的方法;在使用该方法的类中实例化另一个类;使用实例化后的另一个类的变量来调用其方法。
如何用 C# 调用另一个类中的方法
在 C# 中,要调用另一个类中的方法,需要遵循以下步骤:
1. 创建另一个类
例如,创建一个名为 AnotherClass 的类,其中包含一个名为 AnotherMethod 的方法:
public class AnotherClass { public void AnotherMethod() { // 方法实现 } }
登录后复制
2. 在使用该方法的类中实例化另一个类
例如,在名为 CallingClass 的类中实例化另一个类:
public class CallingClass { public void CallAnotherMethod() { AnotherClass anotherClass = new AnotherClass(); } }
登录后复制
3. 调用方法
可以使用实例化后的另一个类的变量来调用其方法:
public void CallAnotherMethod() { AnotherClass anotherClass = new AnotherClass(); anotherClass.AnotherMethod(); }
登录后复制
示例代码:
以下是完整示例代码,演示了如何使用 C# 调用另一个类中的方法:
public class AnotherClass { public void AnotherMethod() { Console.WriteLine("另一个类中的方法被调用了。"); } } public class CallingClass { public void CallAnotherMethod() { AnotherClass anotherClass = new AnotherClass(); anotherClass.AnotherMethod(); } public static void Main(string[] args) { CallingClass callingClass = new CallingClass(); callingClass.CallAnotherMethod(); } }
登录后复制
以上就是c#怎么调用另一个类里面的方法的详细内容,更多请关注叮当号网其它相关文章!
文章来自互联网,只做分享使用。发布者:牧草,转转请注明出处:https://www.dingdanghao.com/article/475515.html