首页 >市场动态 > 正文

每日消息!索引超出了数组界限如何解决 oracle_索引超出了数组界限如何解决

2023-05-08 15:03:22 来源:互联网


(资料图片)

1、"索引超出了数组界限"并不是说索引有多长,而是说这个索引在数组的界限当中找不到,在楼主的代码中。

2、无法保证String[] args 一定有值(即可能不存在args[0]),如果楼主是想在string[] args有值的情况下才输出第一个参数的话,可以改成 class Program { static void Main(string[] args) { string strName; //声明一个string类型的值变量 if (args.Count() > 0) { strName = args[0];//把第一个参数赋给变量strName Console.WriteLine("This is the first argument: !", strName); //格式化输出第一个参数 } } }如果楼主想不管有没有值都输出信息。

3、可以改成:static void Main(string[] args) { string strName = "args is null"; //声明一个string类型的值变量(当数组string[] args 没值时,输出args is null) if (args.Count() > 0) { strName = args[0];//把第一个参数赋给变量strName } Console.WriteLine("This is the first argument: !", strName); //格式化输出第一个参数 }。

本文到此分享完毕,希望对大家有所帮助。

标签:

x 广告
x 广告

Copyright ©   2015-2022 东方劳务网版权所有  备案号:沪ICP备2020036824号-8   联系邮箱:562 66 29@qq.com