码迷,mamicode.com
首页 > 其他好文 > 详细

小技巧

时间:2015-07-27 10:55:47      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:

1 js和java中的不定参数

小案列(js)

技术分享
<!doctype html>
<html>
<head>
<script>
    function add(){
        sum=0;
        for( var i=0;i<arguments.length;i++){
            sum=sum+arguments[i];
        }
        return sum;
    }
    alert(add(1,3,5));
</script>
</head>
<body>
<body>
</html>
View Code

 

小案列(java)

技术分享
public class Test{
    
    public static void main(String[] args){
        show("a","b");
        show("a","b","c");
        show("a","b","c","d");
        show("a","b","c","d","e");
    }
    
    
    public static void show(String...args){
        for(String s: args){
            System.out.print(s+"    ");
        }
        System.out.println();    
    }
}
View Code

 

小技巧

标签:

原文地址:http://www.cnblogs.com/yaobolove/p/4679405.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!