黑马程序员技术交流社区

标题: 为什么这个显示元素还是三个呢 [打印本页]

作者: 小洋人最happy    时间: 2012-12-4 11:47
标题: 为什么这个显示元素还是三个呢
本帖最后由 小洋人最happy 于 2012-12-4 12:15 编辑

import java.util.*;
class StaticImportDemo
{
public static void main(String[] args)
{
   show("hahahha",3,2,3);
}
public static void show(String str,int... arr)
{
  System.out.println(arr.length);
}
}


作者: 冯盼    时间: 2012-12-4 11:51
import java.util.*;
class StaticImportDemo
{
public static void main(String[] args)
{
   show("hahahha",3,2,3);//此处可变参数你就只是传了三个值
}
public static void show(String str,int... arr)
{
  System.out.println(arr.length);
}
}


作者: 黑马_郑亮新    时间: 2012-12-4 11:59
相当于  int[] arr={3,2,3};
那arr.length就是三了
str.length()  等于7
作者: 小洋人最happy    时间: 2012-12-4 12:14
黑马_郑亮新 发表于 2012-12-4 11:59
相当于  int[] arr={3,2,3};
那arr.length就是三了
str.length()  等于7

明白了,谢谢
作者: 小洋人最happy    时间: 2012-12-4 12:14
冯盼 发表于 2012-12-4 11:51
import java.util.*;
class StaticImportDemo
{

明白了
作者: 梁胜海    时间: 2012-12-4 12:31
极度无语,过来敲楼主头




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2