recognize variables in assembly code [closed] - java

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
How do you know what are the variables within the assembly code?thanks for the help.
n.b
If you also show me some piece of code. thanks

Assembly has registers which can be used like variables but with a few limitations (size etc.). Assembly will be different based upon the type of processor you are writing it for. Check out the wikipedia article for x86.

Related

Intellij / Java making file to write notes [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 6 years ago.
Improve this question
How can I make a file within my program so I can write note for myself? I am aware that I can comment within the code; however, I want to have a dedicated file so I can write plain text.
if you update to intellij 14, you can use the scratches functionality: https://blog.jetbrains.com/idea/2014/09/intellij-idea-14-eap-138-2210-brings-scratch-files-and-better-mercurial-integration/

How installing Java Agent? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I would like to know how to use java agent and how to install java agent.
I handle for the first time java agent.
So they are not familiar.
So please explain in detail.
Presuming that you actually mean agents as in instrumentation, check this tutorial:
http://www.javabeat.net/introduction-to-java-agents/
it will give you a quick start in writing your first agents and set up everything you need to get started.
Just on a side note: if you want specific, detailed answers, ask specific, detailed questions.

Does The new java synchronization mechanism preserve the code optimization by JVM. [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
as we know that synchronization method or synchronization blocks preserve the java code and JVM does not optimize the code . is the this true for the new java synchronization mechanism.
If I understand your question correctly: yes the java.util.concurrent primitives establish the same happens-after semantic than synchronized.
See "Memory Consitency Properties" in the Package description.

Following lines of code [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
Is there a program, or a native feature of Eclipse that allows for running a class in steps, each step being detailed (value of containers at that step, highlighting the line of code that is being executed at that step, etc).
You can try Jive debugger. This was developed by my university.
http://www.cse.buffalo.edu/jive/

Any idea on how to implement a cusom hashing function in java for any generic object? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
Any idea on how to implement a custom hashing function in java for any generic object? Not using the existing java hash code implementation?
Eclipse will do it for you. Off the source menu.

Categories

Resources