- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我预期应用程序的简化版本。在 JavaFX 15.0.1 上运行此代码,您将看到一个显示一堆蓝色线条和点的窗口,以及一个重新加载按钮。旋转鼠标滚轮可放大和缩小图片。
问题是:
单击“重新加载”按钮约 20 次,然后旋转鼠标滚轮。观察应用程序如何卡住几秒钟,有时 cpu 事件会达到 90%。如果没有任何可疑之处,请单击以进行更多重新加载。
所以我相信问题是如何从场景中删除所有的形状和绑定(bind),这一定是性能下降的原因,对吧?我做了一个pane.getChildren().clear();
我在这里错过了什么吗?
package application;
import java.util.List;
import java.util.Random;
import java.util.stream.Collectors;
import java.util.stream.Stream;
import javafx.application.Application;
import javafx.beans.property.DoubleProperty;
import javafx.beans.property.SimpleDoubleProperty;
import javafx.stage.Stage;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.layout.Pane;
import javafx.scene.layout.VBox;
import javafx.scene.paint.Color;
import javafx.scene.shape.Circle;
import javafx.scene.shape.Line;
public class Main extends Application {
private DoubleProperty zoom = new SimpleDoubleProperty(1.0);
private int w = 800;
private int h = 500;
@Override
public void start(Stage stage) {
try {
Button reload = new Button("reload");
Pane pane = new Pane();
pane.setManaged(false);
reload.setOnAction(event -> {
pane.getChildren().clear();
List<Displacement> disList = Stream.generate(Displacement::new).limit(1200).collect(Collectors.toList());;
disList.forEach(dis -> pane.getChildren().add(new DisplacementLine(dis, w, h, pane)));
disList.forEach(dis -> pane.getChildren().add(new DisplacementCircle(dis, w, h, pane)));
});
VBox vbox = new VBox(reload, pane);
Pane root = new Pane();
Scene scene = new Scene(root);
root.getChildren().add(vbox);
stage.setScene(scene);
stage.setWidth(1000);
stage.setHeight(600);
stage.show();
pane.prefWidthProperty().bind(zoom.multiply(w));
pane.prefHeightProperty().bind(zoom.multiply(h));
pane.layoutXProperty().bind(root.widthProperty().subtract(pane.prefWidthProperty()).divide(2.0));
pane.layoutYProperty().bind(root.heightProperty().subtract(pane.prefHeightProperty()).divide(2.0));
pane.setOnScroll(scrollEvent -> {
double delta = 0.1;
double f = scrollEvent.getDeltaY() > 0 ? 1+delta : 1/(1+delta);
zoom.set(zoom.get() * f);
});
reload.fire();
} catch(Exception e) {
e.printStackTrace();
}
}
public static void main(String[] args) {
launch(args);
}
}
class DisplacementLine extends Line {
final int w, h;
final double x1, y1, x2, y2;
public DisplacementLine(Displacement dis, int w, int h, Pane pane) {
this.w = w;
this.h = h;
x1 = dis.x;
y1 = dis.y;
x2 = dis.x + dis.u;
y2 = dis.y + dis.v;
startXProperty().bind(pane.prefWidthProperty().multiply(x1).divide(w));
startYProperty().bind(pane.prefHeightProperty().multiply(y1).divide(h));
endXProperty().bind(pane.prefWidthProperty().multiply(x2).divide(w));
endYProperty().bind(pane.prefHeightProperty().multiply(y2).divide(h));
setStroke(Color.BLUE);
setVisible(dis.valid);
}
}
class DisplacementCircle extends Circle {
final int w, h;
final double x, y;
public DisplacementCircle(Displacement dis, int w, int h, Pane pane) {
this.x = dis.x;
this.y = dis.y;
this.w = w;
this.h = h;
centerXProperty().bind(pane.prefWidthProperty().multiply(x).divide(w));
centerYProperty().bind(pane.prefHeightProperty().multiply(y).divide(h));
setRadius(1.5);
setFill(Color.BLUE);
setVisible(dis.valid);
}
}
class Displacement {
final static Random rand = new Random();
final double x, y, u, v;
final boolean valid;
public Displacement() {
x = rand.nextDouble() * 1000;
y = rand.nextDouble() * 600;
u = rand.nextDouble() * 30;
v = rand.nextDouble() * 15;
valid = rand.nextBoolean();
}
}
最佳答案
基于 geometrical 的评论我把这个变化放在一起。这看起来很不错,我可以通过这种方式拥有不可变的对象。
在这里,我引入了函数来监听 Pane 宽度/高度属性的变化,然后设置每个形状的坐标,因此不会创建数千个绑定(bind)。
将使其适应我的最终项目
public class Main extends Application {
private DoubleProperty zoom = new SimpleDoubleProperty(1.0);
private int w = 800;
private int h = 500;
@Override
public void start(Stage stage) {
try {
Button reload = new Button("reload");
Pane pane = new Pane();
pane.setManaged(false);
Consumer<Number> setX = value -> {
double pw = value.doubleValue();
for (Node node : pane.getChildren()) {
if (node instanceof DisplacementLine) {
DisplacementLine dl = (DisplacementLine) node;
dl.setStartX(pw * dl.x1 / w);
dl.setEndX(pw * dl.x2 / w);
}
if (node instanceof DisplacementCircle) {
DisplacementCircle dc = (DisplacementCircle) node;
dc.setCenterX(pw * dc.x / w);
}
}
};
Consumer<Number> setY = value -> {
double ph = value.doubleValue();
for (Node node : pane.getChildren()) {
if (node instanceof DisplacementLine) {
DisplacementLine dl = (DisplacementLine) node;
dl.setStartY(ph * dl.y1 / h);
dl.setEndY(ph * dl.y2 / h);
}
if (node instanceof DisplacementCircle) {
DisplacementCircle dc = (DisplacementCircle) node;
dc.setCenterY(ph * dc.y / h);
}
}
};
pane.prefWidthProperty().addListener((obs, oldval, newval) -> setX.accept(newval));
pane.prefHeightProperty().addListener((obs, oldval, newval) -> setY.accept(newval));
reload.setOnAction(event -> {
pane.getChildren().clear();
List<Displacement> disList = Stream.generate(Displacement::new).limit(1200).collect(Collectors.toList());;
disList.forEach(dis -> pane.getChildren().add(new DisplacementLine(dis, pane)));
disList.forEach(dis -> pane.getChildren().add(new DisplacementCircle(dis, pane)));
setX.accept(pane.getPrefWidth());
setY.accept(pane.getPrefHeight());
});
VBox vbox = new VBox(reload, pane);
Pane root = new Pane();
Scene scene = new Scene(root);
root.getChildren().add(vbox);
stage.setScene(scene);
stage.setWidth(1000);
stage.setHeight(600);
stage.show();
pane.prefWidthProperty().bind(zoom.multiply(w));
pane.prefHeightProperty().bind(zoom.multiply(h));
pane.layoutXProperty().bind(root.widthProperty().subtract(pane.prefWidthProperty()).divide(2.0));
pane.layoutYProperty().bind(root.heightProperty().subtract(pane.prefHeightProperty()).divide(2.0));
pane.setOnScroll(scrollEvent -> {
double delta = 0.1;
double f = scrollEvent.getDeltaY() > 0 ? 1+delta : 1/(1+delta);
zoom.set(zoom.get() * f);
});
reload.fire();
} catch(Exception e) {
e.printStackTrace();
}
}
public static void main(String[] args) {
launch(args);
}
}
class DisplacementLine extends Line {
final double x1, y1, x2, y2;
public DisplacementLine(Displacement dis, Pane pane) {
x1 = dis.x;
y1 = dis.y;
x2 = dis.x + dis.u;
y2 = dis.y + dis.v;
setStroke(Color.BLUE);
setVisible(dis.valid);
}
}
class DisplacementCircle extends Circle {
final double x, y;
public DisplacementCircle(Displacement dis, Pane pane) {
this.x = dis.x;
this.y = dis.y;
setRadius(1.5);
setFill(Color.BLUE);
setVisible(dis.valid);
}
}
class Displacement {
final static Random rand = new Random();
final double x, y, u, v;
final boolean valid;
public Displacement() {
x = rand.nextDouble() * 1000;
y = rand.nextDouble() * 600;
u = rand.nextDouble() * 30;
v = rand.nextDouble() * 15;
valid = rand.nextBoolean();
}
}
关于javafx 形状、绑定(bind)坐标值、性能问题、如何从场景中删除,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65766334/
websocket的用途/场景 先总结:高即时性服务,比如聊天室的群聊,server顺序收到了张三,李四的消息,立即就推送给王五,不能让王五等半天。 Ajax也可以一秒一刷,让王五去问张三说话没,如果
前端的工作过程里,本地开发、提供测试环境,总得有个用着顺手的服务器软件,这个场景里nginx很流行。 介绍两个好用的配置项:rewrite try_files @xxxx rewrite 比较
我有一个场景的两个不同角度的 2 个视频文件,我想重建场景的 3D 估计。它类似于 3D 传感器的作用(例如 Kinect、PrimeSense)。我正在寻找一个库,甚至是一个完善的机器视觉算法,以便
我已阅读RebaseProject页面并尝试了一个不平凡的例子(不是对一个完整的分支进行 rebase )。这与 rebase D 的情况类似我场景B。 这是rebase之前的情况: default
有没有办法将我的场景保存在 JavaFx 应用程序中单独的 Java 文件中?我尝试过这样的事情: public class MyApp extends Application { pri
我有这样的场景:用户想要查看大量有关自己的信息。例如:年龄、姓名、地位、收入、工作、爱好、 child 的名字、妻子的名字、酋长的名字、祖父/祖母的名字。大约 50 个变量。他可以选择任何变量来显示信
我希望有人能帮助我解决这个问题:我有一个包含条目的表。我想执行查询并根据模式获取得分最高的记录。模式将是:如果我的话按原样出现,那么该条目的分数将是最高的。如果该单词出现在句子中,则该条目的分数将低于
我正在尝试在我的应用程序委托(delegate)方法中实现一些逻辑。了解当前正在运行哪种场景将非常有帮助。 [[CCDirector sharedDirector] runningScene] 返回当
好的,这是一个有趣的。我有 2 个表:tbl_notes、tbl_notes_categories 简单地说,tbl_notes 有一个 categoryid,我将 2 个表与该 ID 相关联。所以,
我有一个使用并行运行的 Specflow、selenium、NUnit 的测试解决方案在 AssemblyInfo 中添加了这个:[程序集:Parallelizable(ParallelScope.F
我正在尝试弄清楚如何在 SpriteKit 中添加更多场景。如果我在 GameViewController 中使用 SpriteKit 生成的行 if let scene = GameScene.un
目录 1、业务背景 2、场景分析 3、流程设计 1、业务流程 2、导入流程
我是 Unity 的新手,所以修复起来可能非常简单。我使用了一个 3D Google SketchUp 模型,我想让玩家环顾模型。 super 简单。 我添加了 3D 平面,添加了相机并更新了设置以支
我需要标记要跳过的某些测试。但是,有些测试是参数化的,我只需要能够跳过某些场景。 我使用 py.test -m "hermes_only" 调用测试或 py.test -m "not hermes_o
我已经开始使用 SpecFlow 并想知道是否可以在规范之间重用场景 基本上我的想法是这样的(我可能从根本上是错误的:)) 我编写了一项功能来验证导航。 功能:导航 I should be able
在编写验证输入表单上的信息的 BDD 场景时,您将如何列出规则。 选项是: 1) 每个规则一个场景 2)场景大纲,每个领域和规则的例子 我们如何说某些不在特定字符集中的无效内容,例如: 鉴于我输入了一
我们如何使用 StoryQ 来测试预期出现异常的场景? 最佳答案 就实际代码而言,在测试代码的 .Then 部分,您需要创建一个 Action 或 Func 来确定正在测试的内容,然后在代码的 .Th
完成快速初学者努力通过点击按钮向场景添加节点。 我知道我可以使用点击手势来获取点击坐标并执行点击测试,然后在点击的 3D 空间中放置一个对象。但是,我想在设备屏幕的中央显示一个球体或十字准线,当点击屏
如何在表格中传递空格? Background: Given the following books |Author |(here several spaces)
我正在尝试从 Eric Haines' Standard Procedural Database (SPD) 渲染“mount”场景,但折射部分就是不想配合。我已经尝试了所有我能想到的方法来修复它。
我是一名优秀的程序员,十分优秀!