引用类型常量初始化和数组连接

发布于 2024-09-10 23:40:59 字数 395 浏览 1 评论 0原文

1) const int[] array={1,2,3,4}; //这给出了下面的错误

"Error 1 'ConsoleApplication1.Main.array' is of type 'int[]'.
 A const field of a reference type other than string can only be initialized with null"

在我看来,根据错误信息,使用 const 作为引用类型是没有意义的。我错了吗?

2)如何连接int数组?示例:

int[] x={1,2,3} + {4,5,6};

我知道 + 运算符不起作用,那么将其作为字符串执行的最佳方法是什么?

1) const int[] array={1,2,3,4}; //this gives below error

"Error 1 'ConsoleApplication1.Main.array' is of type 'int[]'.
 A const field of a reference type other than string can only be initialized with null"

In my opinion according to error messeagge, it is not meaningfull to use const for reference types.Am i wrong ?

2) How can i concatenate int array ? Example:

int[] x={1,2,3} + {4,5,6};

I know that + operator will not work so what is best way to do it as strings ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

浅唱々樱花落 2024-09-17 23:40:59

Concat 扩展方法可以做到这一点。代码清晰度不高,但确实如此。

(new int[] { 1, 2, 3, 4 }).Concat(new int[] { 5, 6, 7, 8 }).ToArray();

Concat extension method do that. Not high clarity code but does.

(new int[] { 1, 2, 3, 4 }).Concat(new int[] { 5, 6, 7, 8 }).ToArray();
相权↑美人 2024-09-17 23:40:59

1) 是的,唯一可用作常量的引用类型是 String。

2)要连接数组,您创建一个新数组并将数组的内容复制到其中:

int[] a = { 1, 2, 3 };
int[] b = { 4, 5, 6 };

int[] x = new int[a.Length + b.Length];
a.CopyTo(x, 0);
b.CopyTo(x, a.Length);

我不知道您认为什么是“最佳”方法,但这是最有效的。 (快速测试表明,这比使用 Concat 扩展方法快 10-20 倍。)

1) Yes, the only reference type that is any useful as constant is String.

2) To concatenate arrays you create a new array and copy the contents of the arrays to it:

int[] a = { 1, 2, 3 };
int[] b = { 4, 5, 6 };

int[] x = new int[a.Length + b.Length];
a.CopyTo(x, 0);
b.CopyTo(x, a.Length);

I don't know what you count as the "best" method, but this is the most effective. (A quick test shows that this is 10-20 times faster than using the Concat extension method.)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文