English 中文(简体)
缩略语——搜索变量名称在夸大中的价值
原标题:eclipse - search variable name by it s value in debugger

I m debugging web apps由于形式而产生非常复杂的信条,我很想知道,我进入某种形式领域的价值是否在某些地方存在。

Is there any way to find if some of my variables (on debug list) has given value?

PS:

找不到任何办法(我有数百个这样的变量......)在清点清单中显示? 问题在于,这个信标在不同层次上用十套散图和清单。 真正的问题是,我没有真正知道哪些变量具有这一价值,或者如果是哪一个变量得到拯救的话。 我可以这样大的表述,涵盖所有变量,结构过于复杂。

最佳回答

在你能够接触到你想要的变量的地方添加一个断点,然后增加每个变量的观察点,你可以在观察清单中看到变数的数值清单。

PS: In a watch you can write whatever Java code you want such as x.equals("value") and it will output true if equals or false if otherwise. Or you can just visualize the variable s value directly

问题回答

暂无回答




相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签