?? constant.java
字號(hào):
package com.javapatterns.interpreter;
public class Constant extends Expression
{
private boolean value;
public Constant(boolean value)
{
this.value = value;
}
public boolean interpret(Context ctx)
{
return value;
}
public boolean equals(Object o)
{
if (o != null && o instanceof Constant)
{
return this.value == ((Constant) o).value;
}
return false;
}
public int hashCode()
{
return (this.toString()).hashCode();
}
public String toString()
{
return new Boolean(value).toString();
}
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -