- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在对 JMeter 聚合报告模块进行更改。我创建了一个新类 StatVisualizerAddOn,其中包含要添加到 StatVisualizer 类中的 JPanel 的组件,但是只能使用它的一个实例当前创建。如果创建多个实例,数据不准确。
这是我编写的StatVisualizerAddOn
类的主要部分
public class StatVisualizerAddOn {
public static JTextField percentLine = null;
private static String DEFAULT_PERCENT = "90.0";
private static float percentage;
private static JFrame errorWindow;
private static JButton enterPercent;
public JPanel initCustomization()
{
percentage = new Float(DEFAULT_PERCENT)/100;
//new panel to contain all the elements
JPanel percentLinePanel = new JPanel();
//create text field for user input
percentLine = new JTextField(5);
percentLine.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e)
{
percentLine.setText(percentLine.getText());
}
});
percentLine.setEditable(true);
percentLine.setText(DEFAULT_PERCENT);
percentLine.setPreferredSize(new Dimension(100,25));
//create label beside text field
JLabel percentLineLabel = new JLabel();
percentLineLabel.setText("Enter percent line to display (1-100)%:");
//create the confirmation button
enterPercent = new JButton();
enterPercent.setText("Confirm");
enterPercent.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e)
{
if(checkPercent(percentLine.getText())) //check for valid input
{
setPercent(percentLine.getText());
JOptionPane.showMessageDialog(errorWindow,
(percentLine.getText()+"% Line has been set."),"Confirmation",
JOptionPane.INFORMATION_MESSAGE);
}
}
});
enterPercent.setPreferredSize(new Dimension(80,25));
percentLinePanel.add(percentLineLabel, BorderLayout.WEST);
percentLinePanel.add(percentLine, BorderLayout.CENTER);
percentLinePanel.add(enterPercent, BorderLayout.EAST);
return percentLinePanel;
}
当然,有一些方法可以获取和设置 percentline
textfield
,我没有在此处复制它。
在我的 StatVisualizer
类中,我只是添加了以下内容:
public StatVisualizer() {
super();
model = new ObjectTableModel(COLUMNS,
SamplingStatCalculator.class,
new Functor[] {
new Functor("getLabel"), //$NON-NLS-1$
new Functor("getCount"), //$NON-NLS-1$
new Functor("getMeanAsNumber"), //$NON-NLS-1$
new Functor("getMedian"), //$NON-NLS-1$
new Functor("getPercentPoint", //$NON-NLS-1$
new Object[] { StatVisualizerAddOn.getPercent() }), //90% line
new Functor("getMin"), //$NON-NLS-1$
new Functor("getMax"), //$NON-NLS-1$
new Functor("getErrorPercentage"), //$NON-NLS-1$
new Functor("getRate"), //$NON-NLS-1$
new Functor("getKBPerSecond") //$NON-NLS-1$
},
new Functor[] { null, null, null, null, null, null, null, null, null, null },
new Class[] { String.class, Long.class, Long.class, Long.class, Long.class,
Long.class, Long.class, String.class, String.class, String.class });
clearData();
init();
}
在对象模型中,我让它调用 StatVisualizerAddOn.getPercent()
来获取输入值,并在 init()
中,我添加了以下几行:
StatVisualizerAddOn addon = new StatVisualizerAddOn();
JPanel percentile = addon.initCustomization();
mainPanel.add(percentile);
问题:
(例如,在我的程序中创建了 1 个 StatVisualizer
,我在 percentline
中输入 90%,它将计算第 90 个百分位数。
如果在我的程序中创建 2 个 StatVisualizer
,其中 1 个输入 90%,另一个输入 80% 在 percentline
中,则仅计算 80% 的 StatVisualizer
)
需要一些帮助来了解如何更改代码,以便可以创建多个 Statvisibleizer
而不会出现数据差异。
最佳答案
static
在这里不是你的 friend ...
public static JTextField percentLine = null;
private static String DEFAULT_PERCENT = "90.0";
private static float percentage;
private static JFrame errorWindow;
private static JButton enterPercent;
这意味着每个字段只有一个实例会在 StatVisualizerAddOn
对象的所有实例之间共享。例如,删除static
引用
public JTextField percentLine = null;
private String DEFAULT_PERCENT = "90.0";
private float percentage;
private JFrame errorWindow;
private JButton enterPercent;
关于java - 如何使我的代码能够创建多个实例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24901320/
我正在使用 Java 编写一个时钟程序,该程序能够“滴答作响”,但它存在问题。我认为它与 getter 和 setter 或 toString() 方法有关。 计数器类 package clock;
const Index = () => { // Ref Links const frefLinks = { 1: useRef(1), 2: useRef(2), 3: useRef(3
所以我读了here不能 pickle 装饰函数。确实: import multiprocessing as mp def deco(f): def wrapper(*args, **kwarg
我在go1.11.2 linux/amd64 版本。当包godog使用 go get github.com/DATA-DOG/godog/ 安装,godog 可执行文件在 $GOPATH/bin/中创
如何正确压缩字符串,以便 PHP 能够解压缩? 我试过这个: public static byte[] compress(String string) throws IOException {
我们这里的问题是表明 在测试中使用 Kleene 代数。 在 b 的值由 p 保留的情况下,我们有交换条件 bp = pb;两个程序之间的等价性简化为等式 在 b 的值不被 p 保留的情况下,我们有交
我有一个与我的网络相关的非常奇怪的问题,我在具有多个接口(interface)的 VirtualBox 上安装了 RDO Grizzly OpenStack。 虚拟盒子: eth0 - managem
我正在尝试使用 Passport.js授权谷歌OAuth2在 Node.js .我整个星期都在尝试让它工作,但不知道为什么它不工作,所以现在我求助于 stack 寻求一些潜在的帮助。我已经尝试了所有在
我是一名优秀的程序员,十分优秀!