gpt4 book ai didi

java - 在 GWT 中导入枚举

转载 作者:行者123 更新时间:2023-11-29 04:01:02 25 4
gpt4 key购买 nike

我有以下代码。

import com.google.gwt.core.client.EntryPoint;
import com.google.gwt.user.client.ui.UIObject;
import com.google.gwt.dom.client.Style.Unit;
import com.google.gwt.user.client.ui.HTML;
import com.google.gwt.user.client.ui.LayoutPanel;
import com.google.gwt.user.client.ui.RootLayoutPanel;
import com.google.gwt.user.client.ui.Widget;

public class LayoutPanelExample implements EntryPoint{
@Override
public void onModuleLoad() {
Widget childone = new HTML("left"),childtwo=new HTML("right");
LayoutPanel p = new LayoutPanel();
p.add(childone);
p.add(childtwo);
p.setWidgetLeftWidth(childone, 0, PCT, 50, PCT);
p.setWidgetRightWidth(childtwo, 0, PCT, 50, PCT);
RootLayoutPanel rp = RootLayoutPanel.get();
rp.add(p);
}
}

但它向我显示了这个错误:

C:\XAMPP\xampp\htdocs\LayoutPanelExample\src\java\LayoutPanelExample.java:19: cannot find symbol
symbol : variable PCT
location: class LayoutPanelExample
p.setWidgetLeftWidth(childone, 0, PCT, 50, PCT);

但是我在网上看到可以这样申报PCT。我应该导入一些附加 header 还是做什么?

最佳答案

您忘记导入 PCT。

import static com.google.gwt.dom.client.Style.Unit.PCT;

关于java - 在 GWT 中导入枚举,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3618678/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com