package chapter3;
class MatchClass
{
int x=0,y=0,z=0,res=0;
float a=0,b=0,c=0,ress=0;
String str=null;`enter code here`
void add(int x,int y,int z)
{
res=x+y+z;
System.out.println("Addition of integers="+res);
}
void add(float a, float b, float c)
{
ress=a+b+c;
System.out.println("Addition of float values="+ress);
}
void add(String...str)
{
System.out.println("Concatenation of string="+str);
}
public static void main(String ar[])
{
MatchClass ob=new MatchClass();
ob.add(10,20,30);
ob.add(3.5F,4.5F,6.0F);
ob.add("Mountain","sick");
}
}
这是我编写的代码,对于传递的字符串参数,我得到的输出是非常模糊的。有人可以帮我快速解决问题。 附言:我想使用varagrs概念传递字符串值。
答案 0 :(得分:0)
我认为您正在谈论的问题是字符串函数的输出。 像
Concatenation of string=[Ljava.lang.String;@6d06d69c
在线
System.out.println("Concatenation of string="+ str);
您正在打印变量“ str”,但是“ str”不是字符串,它是一个数组,而数组是一个对象。因此,为了进行打印,函数.toString()在“ str”上被隐式调用。这里的问题是Object.toString()方法不会打印数组的内容,而是在内存中打印对象的类型和引用。
要打印数组的内容,将执行以下操作(至少需要JDK8)
System.out.println("Concatenation of string="+ String.join(",",str));