C# 函数返回多个值的方法详情
作者:安替-AnTi 时间:2022-01-05 05:47:11
引言
根据 C# 语言规范,不可能从一个方法返回多个值。使用 C# 提供的一些其他功能,我们可以将多个值返回给调用者方法。本文概述了一些可用的替代方法来实现这一点。
1.使用ref参数
我们可以使用 ref
关键字 通过引用将值返回给调用者。我们可以使用它从一个方法中返回多个值,
如下所示:
using System;
public class Example
{
private static void fun(ref int x, ref int y)
{
x = 1;
y = 2;
}
public static void Main()
{
int x = 0;
int y = 0;
fun(ref x, ref y);
Console.WriteLine("x = {0}, y = {1}", x, y);
}
}
/*
输出: x = 1, y = 2
*/
请注意, ref
关键字不适用于 Async
和 Iterator
方法。
2.使用out参数修饰符
out
关键字导致参数通过引用传递。它就像 ref 关键字,除了 ref 要求在传递变量之前对其进行初始化。
下面的例子演示了使用 out 参数从方法返回多个值。
using System;
public class Example
{
private static void fun(out int x, out int y)
{
x = 1;
y = 2;
}
public static void Main()
{
int x = 0;
int y = 0;
fun(out x, out y);
Console.WriteLine("x = {0}, y = {1}", x, y);
}
}
/*
输出: x = 1, y = 2
*/
请注意, out 参数不适用于 Async 和 Iterator 方法。
3. 使用元组类
一个 tuple 是一种数据结构,可让您轻松地将多个值打包到单个对象中。元组通常用于从方法返回多个值。
下面的示例创建一个 2 元组并从 fun() 方法:
using System;
public class Example
{
private static Tuple<int, int> fun() {
return Tuple.Create(1, 2);
}
public static void Main()
{
Tuple<int, int> tuple = fun();
Console.WriteLine("x = {0}, y = {1}", tuple.Item1, tuple.Item2);
}
}
/*
输出: x = 1, y = 2
*/
tuple
是一个元组,最多支持7个元素,再多需要嵌套等方法实现。
使用元组定义函数的方法如下:
public static Tuple<string,string> TupleFun()
{
string[] T = {'hello','world'};
Tuple<string, string> tup = new Tuple<string, string>(T[0], T[1]);
return tup;
}
元组还支持多种类型的值。
public static Tuple<string,int> TupleFun()
{
string T = ‘hello';
int q = 6;
Tuple<string, int> tup = new Tuple<string, int>(T, q);
return tup;
}
在调用函数时,使用Item*来调用元组内的元素。
var tuple = TupleFun();
print(tuple.Item1);
print(int.Parse(tuple.Item2));
4.使用C#7 ValueTuple
值元组,在 .NET Framework 4.7 中引入,是元组类型,用于在 C# 中提供元组的运行时实现。像元组类一样,我们可以使用它以更有效的方式从方法中返回多个值。
下面的示例使用类型推断来解构该方法返回的 2 元组。
using System;
public class Example
{
private static (int, int) fun() {
return (1, 2);
}
public static void Main()
{
(int x, int y) = fun();
Console.WriteLine("x = {0}, y = {1}", x, y);
}
}
/*
输出: x = 1, y = 2
*/
5. 使用结构或类
在这里,想法是返回一个包含我们想要返回的所有字段的类的实例。以下代码示例从使用 struct 的方法返回多个值。
using System;
public class Example
{
private struct Pair
{
public int x;
public int y;
}
private static Pair fun() {
return new Pair { x = 1, y = 2 };
}
public static void Main()
{
Pair pair = fun();
Console.WriteLine("x = {0}, y = {1}", pair.x, pair.y);
}
}
/*
输出: x = 1, y = 2
*/
这就是从 C# 中的方法返回多个值的全部内容。
来源:https://blog.csdn.net/weixin_35770067/article/details/127077358
标签:C#,函数,返回,值
0
投稿
猜你喜欢
android端使用openCV实现车牌检测
2023-02-26 07:50:50
java实现简单的验证码功能
2023-08-06 09:21:44
Java爬虫实现爬取京东上的手机搜索页面 HttpCliient+Jsoup
2023-02-19 23:22:37
OpenCV图像处理之常见的图像灰度变换
2021-09-09 07:47:01
修改jar包package目录结构操作方法
2021-12-31 13:46:45
C#6.0新语法示例详解
2023-11-16 03:43:42
C# 循环判断会进来几次的实现代码
2021-12-27 15:10:51
spring boot实现自动输出word文档功能的实例代码
2021-11-10 13:37:51
Android键盘显示与隐藏代码
2021-06-29 22:15:58
android中在Activity中响应ListView内部按钮的点击事件的两种方法
2021-12-25 16:31:07
Android adb logcat 命令查看日志详细介绍
2022-10-28 07:42:44
Android获取SD卡路径及SDCard内存的方法
2021-12-30 17:04:58
Java并发编程之Java内存模型
2023-08-17 23:06:10
c# 快速排序算法
2021-10-18 07:33:20
Java Spring AOP之PointCut案例详解
2023-05-24 16:46:15
Java的split方法使用详解
2021-10-03 06:09:57
java 解决Eclipse挂掉问题的方法
2023-02-19 14:05:55
自定义BufferedReader的实例
2021-06-10 08:13:39
Spring注解之@Lazy注解使用解析
2023-08-28 23:12:23
SpringBoot2整合Drools规则引擎及案例详解
2021-12-30 05:57:10