博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
c#---params参数
阅读量:5789 次
发布时间:2019-06-18

本文共 1399 字,大约阅读时间需要 4 分钟。

写一个方法,求一个同学的总成绩

static void Main(string[] args)        {            int[] n = { 99, 88, 77 };            Test("张三", n);            Console.ReadKey();        }        public static void Test(string name, int[] score)        {            int sum = 0;            for (int i = 0; i < score.Length; i++)            {                sum += score[i];            }            Console.WriteLine("{0}同学考试总成绩为{1}分", name, sum);        }

不声明数组说明成绩,直接在方法中写成绩,怎么办?

params参数:实参与形参无需保持一致,但是类型要相同,就是你调用方法的时候,里面的参数不用按照封装的那个方法写

注意事项:

params参数必须是形参列表中的最后一位元素

static void Main(string[] args)        {            Test("张三", 100, 100, 100);            Console.ReadKey();        }        public static void Test(string name, params int[] score)        {            int sum = 0;            for (int i = 0; i < score.Length; i++)            {                sum += score[i];            }            Console.WriteLine("{0}同学考试总成绩为{1}分", name, sum);        }

params参数求任意长度int类型数组总和示例

static void Main(string[] args)        {            int sum = Program.GetSum(7, 8);            Console.WriteLine(sum);            Console.ReadKey();        }        public static int GetSum(params int[] numbers)        {            int sum = 0;            for (int i = 0; i < numbers.Length; i++)            {                sum += numbers[i];            }            return sum;        }

 

转载于:https://www.cnblogs.com/huangxuQaQ/p/10731481.html

你可能感兴趣的文章
js实现复选框的操作-------Day41
查看>>
数据结构化与保存
查看>>
[SpringBoot] - 配置文件的多种形式及优先级
查看>>
chrome浏览器开发者工具之同步修改至本地
查看>>
debian7 + wheezy + chromium + flashplayer
查看>>
AOP
查看>>
进阶开发——文档,缓存,ip限速
查看>>
vue中子组件需调用父组件通过异步获取的数据
查看>>
uva 11468 - Substring(AC自己主动机+概率)
查看>>
Mysql 数据备份与恢复,用户创建,授权
查看>>
沉思录
查看>>
Angular.js中的$injector服务
查看>>
构建之法读书笔记01
查看>>
linux - lsof 命令最佳实践
查看>>
kafka性能测试
查看>>
现实世界的Windows Azure:h.e.t软件使用Windows Azure削减50%的成本
查看>>
深入.net框架
查看>>
聚合类新闻client产品功能点详情分析
查看>>
js设置定时器
查看>>
数据库除运算
查看>>