到目前为止,如果我尝试使用concat运算符,我会得到这样的错误tester.java:14:cannot find symbol symbol:method concat(MyString)location:class MyString system.out.println(hello.concat(goodbye));//打印“HelloGoodbye”
当我尝试打印MyString的“hello”对象时,我得到了MyString@558EE9D6,我觉得它接近工作了…
public class MyString
{
private char[] charString;
private String oneString;
public MyString(String string)
{
this.oneString = string;
}
//second constructor for overloading
public MyString(char[] s)
{
this.charString = s;
this.oneString = charString.toString();
}
//methods
public String toString( char [] s)
{
return new String(s);
}
public char charAt(int i) {
char [] temp = new char[oneString.length()];
for ( int j = 0; j < oneString.length() ; j++)
temp[j] = oneString.charAt(i);
return temp[i];
}
public String concat ( char[] s)
{
s.toString();
String result = oneString + s;
return result;
}
public String concat ( String s)
{
String result = oneString + s;
return result;
}
}
public class Tester{public static void main(String[]args)
{
MyString hello = new MyString("hello");
System.out.println(hello); // right now this prints MyString@558ee9d6
System.out.println(hello.charAt(0)); // works, prints 'h'
char[] arr = {'g','o','o','d','b','y','e' };
MyString goodbye = new MyString(arr);
// System.out.println(hello.concat(goodbye)); // i can't get this line to work
System.out.println(hello.equals(goodbye)); // works, prints false
System.out.println(hello.equals(hello)); //works, prints true
}
}
您正在尝试打印对象:
System.out.println(hello); // right now this prints MyString@558ee9d6
在本例中,您的MyString类
将get方法设置为变量OneString。
public String getOneString() {return this.oneString;}
然后调用
System.out.println(hello.getOneString());
另一个问题
System.out.println(hello.concat(goodbye));
concat方法接收的是字符串,而不是MyString类
您可能想要这样做
System.out.println(hello.concat(goodbye.getOneString()));
或
public String concat ( MyString myS)
{
String s = myS.getOneString();
String result = oneString + s;
return result;
}
最终结果:
public class Tester { public static void main (String[] args)
{
MyString hello = new MyString("hello");
System.out.println(hello.getOneString());
System.out.println(hello.getOneString().charAt(0));
char[] arr = {'g','o','o','d','b','y','e' };
MyString goodbye = new MyString(arr);
System.out.println(hello.concat(goodbye.getOneString()));
System.out.println(hello.equals(goodbye)); // works, prints false
System.out.println(hello.equals(hello)); //works, prints true
}
}
问题内容: 我是Java新手,所以我几乎不需要帮助 我有 我想向此数组(脚本)添加新的字符串(string1,string2)作为示例 我想在以后的阶段中不添加新字符串 我该怎么办? 问题答案: 您无法在Java中调整数组的大小。 声明数组的大小后,它将保持固定。 相反,您可以使用具有动态大小的对象,这意味着您无需担心其大小。如果数组列表的大小不足以容纳新值,则它将自动调整大小。
问题内容: 假设字符串a和b: 在幕后,他们是同一回事吗? 这里将concat反编译为参考。我也希望能够反编译该+运算符,以查看其作用。 问题答案: 不,不是。 首先,语义上略有不同。如果a是null,则抛出一个,但a+=b将把原来的值a就好像它是null。此外,该方法仅接受值,而+操作员会将参数无提示地转换为String(使用对象的方法)。因此,该concat()方法在接受方面更加严格。 要深入
问题内容: 我需要将一些不可打印的字符添加到java中的字符串中,以便可以沿tcp管道发送它。字符对我正在使用的协议表示某种含义(分别记录分隔符和消息结尾) 最好的方法是什么? 理想情况下,我希望将它们称为常量,以便可以在需要的地方使用字符串conconanation / stringbuilder / string.format将其添加,而不必键入它们。 出于好奇,我需要的字符是ASCIIx1E
问题内容: 我在Java程序中有两个字符串,我想以某种方式混合以形成两个新字符串。为此,我必须从每个字符串中提取一些构成字符并将其添加以形成新的字符串。我有这样的代码(this.eka和this.toka是原始字符串): 我正在获取.charAt(x)部分的数字,那么如何将字符转换为字符串? 问题答案: 只使用永远使用代替 例如,当位置arent不是固定值而变量 其中x,y,z是保存从中提取位置的
问题内容: 我对此感到困惑,我需要一些新鲜的眼睛,我不确定为什么这段代码会这样做。 输出是直到最后一个数字(0xFC)返回-4为止的所有内容,我知道它是一个十六进制值,但是如果我对252的十进制值也一样,它也会给我一个负数。我希望这只是一个简单的解决方案,我看不到它。 提前谢谢。 问题答案: 字符串到char数组很简单 您能否再解释一下您要做什么? 更新 如果我理解您的新评论,则可以使用字节数组,
问题内容: 是否可以在Java中将单个字符附加到数组或字符串的末尾 例如: 问题答案: