作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 Dr.Java 来执行此构造函数。当我在交互框中输入以下内容时
CensoredWriter cw = new CensoredWriter(System.out, "whine|whining");
cw.print("No whining")
它返回“No 提示”,但根据我的构造函数,正确的答案应该是“No %!^*#@”。这里有什么问题吗?
public class CensoredWriter extends PrintWriter {
String censored;
public CensoredWriter(OutputStream o, String c) {
super(o);
this.censored = c;
}
public CensoredWriter(File f, String c) throws Exception {
super(f);
this.censored = c;
}
public CensoredWriter(String s, String c) throws Exception {
super(s);
this.censored = c;
}
public String transform(String s) {
String a = s.replace(censored, "%!^*#@");
return a;
}
@Override
public void print(String s) {
transform(s);
super.print(s);
flush();
}
@Override
public void println(String s) {
print(s);
flush();
}
}
最佳答案
实际上有两个问题。
replace
只会替换完整的字符串匹配。 replaceAll
实际上允许您使用常规表达式。
您没有将 transform
调用的结果存储在 print
方法中,因此它会掉到地板上。无论如何,我个人都会内联该调用,因为无论如何您都会得到一个新的字符串:
@Override
public void print(String s) {
super.print(transform(s));
flush();
}
关于java - CensoredWriter cw = new CensoredWriter(System.out, "whine|whining");,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28655129/
我正在使用 Dr.Java 来执行此构造函数。当我在交互框中输入以下内容时 CensoredWriter cw = new CensoredWriter(System.out, "whine|whin
我是一名优秀的程序员,十分优秀!