{"id":316,"date":"2023-09-16T10:32:10","date_gmt":"2023-09-16T02:32:10","guid":{"rendered":""},"modified":"2023-09-18T11:49:45","modified_gmt":"2023-09-18T03:49:45","slug":"c%e6%95%b0%e7%bb%84%e8%b5%8b%e5%88%9d%e5%80%bc_c%e6%95%b0%e7%bb%84%e5%88%9d%e5%a7%8b%e5%8c%96","status":"publish","type":"post","link":"https:\/\/mushiming.com\/316.html","title":{"rendered":"c#\u6570\u7ec4\u8d4b\u521d\u503c_C#\u6570\u7ec4\u521d\u59cb\u5316"},"content":{"rendered":"
\n

C#\u7684\u6570\u7ec4\u521d\u59cb\u5316\u662f\u5728\u58f0\u660e\u6570\u7ec4\u65f6\u5c06\u521d\u59cb\u503c\u653e\u5728\u5927\u62ec\u53f7({})\u4e4b\u5185\u3002\u5982\u679c\u6ca1\u6709\u6307\u5b9a\u521d\u59cb\u503c\uff0c\u5219\u6570\u7ec4\u6210\u5458\u5c06\u81ea\u52a8\u521d\u59cb\u5316\u4e3a\u8be5\u6570\u7ec4\u7c7b\u578b\u7684\u9ed8\u8ba4\u521d\u59cb\u503c\u3002\u8bf7\u9605\u8bfb\u6570\u7ec4\u7684\u5c5e\u6027\u3002\u5982\u679c\u5c06\u6570\u7ec4\u58f0\u660e\u4e3a\u67d0\u7c7b\u578b\u7684\u5b57\u6bb5\uff0c\u5219\u5f53\u5b9e\u4f8b\u5316\u8be5\u7c7b\u578b\u65f6\u5b83\u5c06\u88ab\u8bbe\u7f6e\u4e3a\u9ed8\u8ba4\u503cnull\u3002<\/p>\n

\u4e00\u3001\u4e00\u7ef4\u6570\u7ec4\u7684\u521d\u59cb\u5316<\/p>\n

1. \u5728\u58f0\u660e\u6570\u7ec4\u65f6\u5c06\u5176\u521d\u59cb\u5316\u3002\u5982\uff1a<\/p>\n

int[] array = new int[6]{1,2,3,4,5,6};<\/p>\n

string[] stringArray = new string[3]{\"string1\", \"string2\", \"string3\"};2. \u53ef\u4ee5\u7701\u7565\u6570\u7ec4\u7684\u5927\u5c0f\u3002\u5982\uff1a<\/p>\n

int[] array = new int[]{1,2,3,4,5,6};<\/p>\n

string[] stringArray = new string[]{\"string1\", \"string2\", \"string3\"};3. \u5982\u679c\u63d0\u4f9b\u4e86\u521d\u59cb\u503c\u8bbe\u5b9a\u9879\uff0c\u8fd8\u53ef\u4ee5\u7701\u7565new\u8fd0\u7b97\u7b26\u3002\u5982\uff1a<\/p>\n

int[] array = {1,2,3,4,5,6};<\/p>\n

string[] stringArray = {\"string1\", \"string2\", \"string3\"};4. \u58f0\u660e\u4e00\u4e2a\u6570\u7ec4\u53d8\u91cf\u4f46\u4e0d\u5c06\u5176\u521d\u59cb\u5316\uff0c\u7b49\u5230\u5c06\u6570\u7ec4\u5206\u914d\u7ed9\u6b64\u53d8\u91cf\u65f6\u5fc5\u987b\u4f7f\u7528new\u8fd0\u7b97\u7b26\u3002\u5982\uff1a<\/p>\n

int[] array;<\/p>\n

array = new int[]{1,2,3,4,5};<\/p>\n

string[] stringArray;<\/p>\n

stringArray = new string[]{\"string1\", \"string2\", \"string3\"};\u4e8c\u3001\u591a\u7ef4\u6570\u7ec4\u7684\u521d\u59cb\u5316<\/p>\n

1. \u58f0\u660e\u6570\u7ec4\u65f6\u5c06\u5176\u521d\u59cb\u5316\u3002\u5982\uff1a<\/p>\n

int[,] array2D = new int[,]{
\n {1,2},{3,4},{5,6}};     \/\/ \u4e8c\u7ef4\u6570\u7ec4<\/p>\n

int[,,] array3D = new int[,,]{
\n {
\n {1,2,3}},{
\n {4,5,6}}}; \/\/ \u4e09\u7ef4\u6570\u7ec4\u5bf9\u4e8e\u4e8c\u7ef4\u6570\u7ec4array2D\u6765\u8bf4\uff0c\u8fd9\u662f\u4e00\u4e2a3\u884c2\u5217\u7684\u4e8c\u7ef4\u6570\u7ec4\u30023\u884c\u5206\u522b\u662f{1,2}\u3001{3,4}\u548c{5,6}\u8fd9\u4e09\u884c\uff0c\u6bcf\u4e00\u884c\u90fd\u7528\u5927\u62ec\u53f7{}\u62ec\u8d77\u6765\uff0c\u7b2c1\u884c{1,2}\u75280\u8868\u793a\uff0c\u7b2c2\u884c{3,4}\u75281\u8868\u793a\uff0c\u7b2c3\u884c{5,6}\u75282\u8868\u793a\u3002<\/p>\n

\u6bcf\u4e00\u884c\u5927\u62ec\u53f7\u5185\u8868\u793a\u7684\u662f\u5217\uff0c\u5bf9\u4e8earray2D\u6765\u8bf4\uff0c\u6bcf\u4e00\u884c\u90fd\u662f2\u5217\uff0c\u75280\u30011\u8868\u793a\u3002\u90a3\u4e48\u8fd9\u4e2a\u6570\u7ec4\u5c31\u662f3\u884c2\u5217\u3002<\/p>\n<\/div>\n","protected":false},"excerpt":{"rendered":"c#\u6570\u7ec4\u8d4b\u521d\u503c_C#\u6570\u7ec4\u521d\u59cb\u5316C#\u7684\u6570\u7ec4\u521d\u59cb\u5316\u662f\u5728\u58f0\u660e\u6570\u7ec4\u65f6\u5c06\u521d\u59cb\u503c\u653e\u5728\u5927\u62ec\u53f7({})\u4e4b\u5185\u3002\u5982\u679c\u6ca1\u6709\u6307\u5b9a\u521d\u59cb\u503c\uff0c\u5219\u6570\u7ec4\u6210\u5458\u5c06\u81ea\u52a8...","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[82],"tags":[],"_links":{"self":[{"href":"https:\/\/mushiming.com\/wp-json\/wp\/v2\/posts\/316"}],"collection":[{"href":"https:\/\/mushiming.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/mushiming.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/mushiming.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/mushiming.com\/wp-json\/wp\/v2\/comments?post=316"}],"version-history":[{"count":0,"href":"https:\/\/mushiming.com\/wp-json\/wp\/v2\/posts\/316\/revisions"}],"wp:attachment":[{"href":"https:\/\/mushiming.com\/wp-json\/wp\/v2\/media?parent=316"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/mushiming.com\/wp-json\/wp\/v2\/categories?post=316"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/mushiming.com\/wp-json\/wp\/v2\/tags?post=316"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}