我有以下测试:
public void testStringReplace()
{
final String placeholder = "$ph$";
final String template = "<test>" + placeholder + "</test>";
final String result = "<test>Hello!</test>";
String copyOfTemplate = template;
copyOfTemplate.replace(placeholder, "Hello!");
if(!copyOfTemplate.equals(result));
fail();
}
测试总是失败,但为什么呢?我必须如何定义copyOfTemplate才能改变它?或者我在这里遗漏了一些其他细节?
小怪兽爱吃肉
回首忆惘然
郎朗坤
相关分类