📄 ibitstring.java
字号:
/* * IBitString.java 1.1 05/10/27 * * Copyright 2004-2005 Positronic Software. * * */package positronic.satisfiability.bitstring;import java.util.List;import positronic.satisfiability.elements.IBooleanVariable;public interface IBitString extends Cloneable{ List asList(); Object clone() throws CloneNotSupportedException; //boolean equals(Object anObject); IBooleanVariable getBooleanVariable(int i) throws Exception; IBooleanVariable[] getBVArray() throws Exception; IBooleanVariable[] getBVArray(int size) throws Exception; String getName(); //int index(IBooleanVariable b) throws Exception; void setBooleanVariable(int i, IBooleanVariable ib) throws Exception; //void setName(String name) throws Exception; int size(); //boolean[] toBooleanArray() throws Exception; //String toString();}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -