📄 instsampleelement.java
字号:
package shared;
import java.lang.*;
/** Internal structure for the InsanceList class. Used for taking samples from the
* list.
* @see InstanceList
*/
public class InstSampleElement { // used for sample_with_replacement--should not be
// global, but needed for template instantiation
/** This class has no access to a copy constructor.
* @param source The InstSampleElement to be copied.
*/
private InstSampleElement(InstSampleElement source){}
/** This class has no access to an assign method.
* @param source The InstSampleElement to be copied.
*/
private void assign(InstSampleElement source){}
// Public member data
/** The Instance object held in this InstSample.
*/
public Instance pix;
/** TRUE if used in a sample, FALSE otherwise.
*/
public boolean flag;
/** Constructor.
*/
InstSampleElement() {
pix = null;
flag = false;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -