- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
在阅读本文之前,请了解我知道有更好的方法来编写此代码。
这段代码是很久以前写的,我对Java的了解比以前多了。 尽管如此,我最近查看了代码并希望找出导致问题的原因,以便将来知道。
更新:我已经下载了一个 JProfiler 进行实验。事实证明,当我绘制字符串时,第 158 行的内存分配出现了巨大的峰值。但是,我不知道它到底意味着什么,也不知道为什么它会导致巨大的滞后峰值。
public void draw(Graphics g) {
if (isVisible) {
for (int i = 0; i < debugList.length - 1; i += 2) {
g.setColor(color);
g.setFont(font);
try {
g.drawString(debugList[i] + ":", xPos, yPos + (i * 15)); // Line 158
g.drawString(debugList[i + 1], xPos, yPos + 10 + (i * 15));
}
catch (NullPointerException e) {
if (!errorDisplayed) {
System.out
.println("There was a problem while displaying the debug variables. Check to make sure you added all of the variables you declared in the debug constructor");
errorDisplayed = true;
}
}
}
}
}
不久前,我正在制作一个小型 2D 平台游戏,并且必须修复错误。我认为修复错误的一个很酷的方法是使用一个调试类来在屏幕上显示变量。事实证明,效果很好!它在屏幕上显示所有变量,没有任何问题!
但是,当我在按下某个键后调用 changeVisible()
(位于代码的最底部) 方法时,它会将整个线程卡住大约 3 秒。
这并不是那么重要,因为它已经与我制作的其他调试类一起过时了,但我仍然想知道是什么导致了 future 项目的峰值。
import java.awt.Color;
import java.awt.Font;
import java.awt.Graphics;
public class Debug {
private String[] debugList;
private boolean errorDisplayed = false, isVisible = true;
private Color color;
private int xPos = 0, yPos = 0, currentIndex = 0;
private Font font;
/**
* This constructor will create an array that can fit (numberOfVars)
* variables
*
* @param numberOfVars
* - The amount of variables you wish to display
* @param setVisible
* - Will toggle visibility on instantiation (true):on
* (false):off
*/
public Debug(int numberOfVars, boolean setVisible) {
debugList = new String[numberOfVars * 2];
if (setVisible)
isVisible = true;
else
isVisible = false;
color = new Color(0, 0, 0);
xPos = 20;
yPos = 30;
font = new Font("SanSerif",Font.BOLD,12);
}
/**
* This constructor will create an array that can fit (numberOfVars)
* variables
*
* @param numberOfVars
* - The amount of variables you wish to display
* @param setVisible
* - Will toggle visibility on instantiation (true):on
* (false):off
* @param inputXPos
* - The location of the text on the x axis
* @param inputYPos
* - The location of the text on the y axis
*/
public Debug(int numberOfVars, boolean setVisible, int inputXPos,
int inputYPos) {
debugList = new String[numberOfVars * 2];
if (setVisible)
isVisible = true;
else
isVisible = false;
color = new Color(0, 0, 0);
xPos = inputXPos;
yPos = inputYPos;
}
/**
* This method will initialize the variable you wish to display
*
* @param objectName
* - the display name of the variable
* @param arg
* - the value of the variable you wish to display
*/
public void addDebug(String objectName, Object arg) {
if (currentIndex + 2 <= debugList.length) {
debugList[currentIndex] = objectName;
debugList[currentIndex + 1] = arg.toString();
currentIndex += 2;
}
}
/**
* This method will change the text color
*
* @param newColor
* - the color of the debug text
*/
public void changeColor(Color newColor) {
color = newColor;
}
/**
* This method will change the text font
* @param font
* - the font of the debug text
*/
public void changeFont(Font font) {
this.font = font;
}
/**
* This method will update the variable value
*
* @param objectName
* - the name of the variable you wish to display (must be the
* same name used in addDebug())
* @param arg
* - the value of the variable you wish to display
*/
public void update(String objectName, Object arg) {
for (int i = 0; i < debugList.length; i += 2) {
if (debugList[i] != null && debugList[i].equals(objectName)) {
if (i < debugList.length + 1)
debugList[i + 1] = arg.toString();
}
}
}
/**
* This method will draw the debug information
*
* @param g
* - The graphics you wish to paint on
* @param lineSpacing
* - The display space between the variables
*/
public void draw(Graphics g, int lineSpacing) {
if (isVisible) {
if (currentIndex == debugList.length) {
for (int i = 0; i < debugList.length - 1; i += 2) {
g.setColor(color);
g.setFont(font);
try {
g.drawString(debugList[i] + ":", xPos, yPos
+ (i * lineSpacing));
g.drawString(debugList[i + 1], xPos, yPos + 10
+ (i * lineSpacing));
}
catch (NullPointerException e) {
if (!errorDisplayed) {
System.out
.println("There was a problem while displaying the debug variables. Check to make sure you added all of the variables you declared in the debug constructor");
errorDisplayed = true;
}
}
}
}
}
}
/**
* This method will draw the debug information
*
* @param g
* - The graphics you wish to paint on
*/
public void draw(Graphics g) {
if (isVisible) {
for (int i = 0; i < debugList.length - 1; i += 2) {
g.setColor(color);
g.setFont(font);
try {
g.drawString(debugList[i] + ":", xPos, yPos + (i * 15));
g.drawString(debugList[i + 1], xPos, yPos + 10 + (i * 15));
}
catch (NullPointerException e) {
if (!errorDisplayed) {
System.out
.println("There was a problem while displaying the debug variables. Check to make sure you added all of the variables you declared in the debug constructor");
errorDisplayed = true;
}
}
}
}
}
/**
* Will toggle the visibility of the debug display
*/
public void changeVisible() {
isVisible = !isVisible;
}
}
主类(用 Debug 注释的行很重要):
package com.bustedearlobes.platformergame;
import java.applet.Applet;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.Font;
import java.awt.Graphics;
import java.awt.Image;
import java.awt.Point;
import java.util.*;
import javax.swing.JFrame;
public class Game extends Applet implements Runnable {
private static final long serialVersionUID = 1L;
public static int pixelSize = 3;
public static double sx = 0, sy = 0, dir = 0;
public static Dimension windowSize = new Dimension(700,560), pixels = new Dimension(windowSize.width/pixelSize,windowSize.height/pixelSize);
public static Point mousePos = new Point(0,0);
public static boolean isRunning = false,
isMoving = false,
isJumping = false,
isMouseLeft = false,
isMouseRight = false;
public static String name = "2D Game";
public static Level level;
public static Character character;
public static Inventory inventory;
public static Sky sky;
public static ArrayList<Mob> mobs = new ArrayList<Mob>();
public static ArrayList<BrokenBlocks> brokenBlocks = new ArrayList<BrokenBlocks>();
public static Spawner spawner;
public static Sound sound;
public static GameFile gameFile;
public static JFrame frame;
public static Tile tile;
public final static double GRAVITYCONSTANT = 1;
private Image screen;
public static Debug debug = new Debug(5,false); //Debug
public Game() {
setPreferredSize(windowSize);
addKeyListener(new Listening()); //Debug this is where the key listener is that calls the changeVisible() method
addMouseListener(new Listening());
addMouseMotionListener(new Listening());
addMouseWheelListener(new Listening());
}
public void start() { // Defining all the objects required
requestFocus();
tile = new Tile(); // Loading Images...
gameFile = new GameFile();
level = new Level();
character = new Character(Tile.tileSize, Tile.tileSize * 2);
isRunning = true;
sound = new Sound();
inventory = new Inventory();
sky = new Sky();
spawner = new Spawner(10);
debug.changeFont(new Font("San Serif",Font.PLAIN,10)); // Debug
debug.addDebug("Player", character); // Debug
debug.addDebug("Side X", sx); // Debug
debug.addDebug("Side Y", sy); // Debug
debug.addDebug("Sky", sky); // Debug
debug.addDebug("Level.animation", level.animation); // Debug
new Thread(this).start();
}
public void stop() {
isRunning = false;
}
public void tick() {
character.tick();
level.tick(pixels.width / Tile.tileSize + 2,pixels.height / Tile.tileSize + 2);
sky.tick();
inventory.tick();
for (int i = 0; i < mobs.toArray().length;i++)
mobs.get(i).tick();
for (int i = 0; i < brokenBlocks.toArray().length;i++)
brokenBlocks.get(i).tick();
debug.update("Player", character); // Debug
debug.update("Side X", sx); // Debug
debug.update("Side Y", sy); // Debug
debug.update("Sky", sky); // Debug
debug.update("Level.animation", level.animation); // Debug
}
public void render() {
Graphics g = screen.getGraphics();
g.setColor(new Color(100,100,255));
g.fillRect(0,0,pixels.width, pixels.height);
sky.render(g);
level.render(g,pixels.width / Tile.tileSize + 2,pixels.height / Tile.tileSize + 2);
for (int i = 0; i < brokenBlocks.toArray().length;i++)
brokenBlocks.get(i).render(g);
for (int i = 0; i < mobs.toArray().length;i++)
mobs.get(i).render(g);
character.render(g);
inventory.render(g);
debug.draw(g); // Debug
g = getGraphics();
g.drawImage(screen,0,0,windowSize.width,windowSize.height,0,0,pixels.width,pixels.height,null);
g.dispose();
}
public static void main(String[] args) {
Game game = new Game();
frame = new JFrame();
frame.add(game);
frame.setTitle(name);
frame.setResizable(false);
frame.pack();
frame.setLocationRelativeTo(null);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
game.start();
}
public void run() {
screen = createVolatileImage(pixels.width, pixels.height);
while(isRunning) {
tick();
render();
try {
Thread.sleep(5);
} catch (Exception e) {
}
}
}
}
最佳答案
我无法立即看出问题所在,除非 debugList
可能是一个列表而不是 HashMap。 (不确定这会产生多大的影响。)
但是,我可以告诉你如何找到自己。查看一个名为 JProfiler 的工具。它允许您查看代码中的逐行执行时间,这将让您了解瓶颈在哪里。说明here .
关于java - 这段代码如何导致几秒钟的暂停?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17243245/
我尝试理解[c代码 -> 汇编]代码 void node::Check( data & _data1, vector& _data2) { -> push ebp -> mov ebp,esp ->
我需要在当前表单(代码)的上下文中运行文本文件中的代码。其中一项要求是让代码创建新控件并将其添加到当前窗体。 例如,在Form1.cs中: using System.Windows.Forms; ..
我有此 C++ 代码并将其转换为 C# (.net Framework 4) 代码。有没有人给我一些关于 malloc、free 和 sprintf 方法的提示? int monate = ee; d
我的网络服务器代码有问题 #include #include #include #include #include #include #include int
给定以下 html 代码,将列表中的第三个元素(即“美丽”一词)以斜体显示的 CSS 代码是什么?当然,我可以给这个元素一个 id 或一个 class,但 html 代码必须保持不变。谢谢
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许提问寻求书籍、工具、软件库等的推荐。您可以编辑问题,以便用事实和引用来回答。 关闭 7 年前。
我试图制作一个宏来避免重复代码和注释。 我试过这个: #define GrowOnPage(any Page, any Component) Component.Width := Page.Surfa
我正在尝试将我的旧 C++ 代码“翻译”成头条新闻所暗示的 C# 代码。问题是我是 C# 中的新手,并不是所有的东西都像 C++ 中那样。在 C++ 中这些解决方案运行良好,但在 C# 中只是不能。我
在 Windows 10 上工作,R 语言的格式化程序似乎没有在 Visual Studio Code 中完成它的工作。我试过R support for Visual Studio Code和 R-T
我正在处理一些报告(计数),我必须获取不同参数的计数。非常简单但乏味。 一个参数的示例查询: qCountsEmployee = ( "select count(*) from %s wher
最近几天我尝试从 d00m 调试网络错误。我开始用尽想法/线索,我希望其他 SO 用户拥有可能有用的宝贵经验。我希望能够提供所有相关信息,但我个人无法控制服务器环境。 整个事情始于用户注意到我们应用程
我有一个 app.js 文件,其中包含如下 dojo amd 模式代码: require(["dojo/dom", ..], function(dom){ dom.byId('someId').i
我对“-gencode”语句中的“code=sm_X”选项有点困惑。 一个例子:NVCC 编译器选项有什么作用 -gencode arch=compute_13,code=sm_13 嵌入库中? 只有
我为我的表格使用 X-editable 框架。 但是我有一些问题。 $(document).ready(function() { $('.access').editable({
我一直在通过本教程学习 flask/python http://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-i-hello-wo
我想将 Vim 和 EMACS 用于 CNC、G 代码和 M 代码。 Vim 或 EMACS 是否有任何语法或模式来处理这种类型的代码? 最佳答案 一些快速搜索使我找到了 this vim 和 thi
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 想改进这个问题?更新问题,使其成为 on-topic对于堆栈溢出。 7年前关闭。 Improve this
这个问题在这里已经有了答案: Enabling markdown highlighting in Vim (5 个回答) 6年前关闭。 当我在 Vim 中编辑包含 Markdown 代码的 READM
我正在 Swift3 iOS 中开发视频应用程序。基本上我必须将视频 Assets 和音频与淡入淡出效果合并为一个并将其保存到 iPhone 画廊。为此,我使用以下方法: private func d
pipeline { agent any stages { stage('Build') { steps { e
我是一名优秀的程序员,十分优秀!