memory-address
is it possible to get address on heap of a variable in java?
lets say i have this variable : ... Somekindofobject var = new Somekindofobject(); ... and i want to know where var is located on the heap ( by address , like 0x08 and so on),and to print the addre[详细]
2023-02-03 17:31 分类:问答memory addressesing
For example we are开发者_C百科 in Windows XP platform, we have program A on ollydbg and we look on the instruction x. it has the address 0x11111111(for example).if i take the program A and run in olly[详细]
2023-01-29 14:25 分类:问答An observation about variable memory addresses in C
I have a question rather than a problem (witch maybe arises a memory question).. I\'ve written this simple program:[详细]
2023-01-29 07:10 分类:问答Iterator issues continue
I have bug checked this code considerably now and made sure I am outputting the \'correct\' things to outline the problem. The iterator never points at the list at all, but another bunch of addresses[详细]
2023-01-29 00:47 分类:问答How is a physical address generated in 8086?
In the 8086 architecture, the memory space is 1 MiB in size and divided into logical segments of up to 64 KiB each.[详细]
2023-01-25 18:36 分类:问答Nehalem memory architecture address mapping
Given a 2 processor Nehalem Xeon server with 12GB of RAM (6x2GB), how are memory addresses mapped onto the physical memory modules?[详细]
2023-01-24 22:24 分类:问答C pointers - Different address
I\'m trying to learn about C pointers but I cannot understand somethings... The following code: #include <stdio.h>[详细]
2023-01-18 10:55 分类:问答What does "DS:[40207A]" mean in assembly?
0040103ACAL开发者_StackOverflow社区L DWORD PTR DS:[40207A]USER32.MessageBoxA What does DS: mean?The instruction is loading a new EIP value from memory at ds:[40207A]. i.e. there\'s a function pointe[详细]
2023-01-17 20:48 分类:问答How is it that main function is always loaded at the same address whereas variables have different address most of the time?
I wrote this small program today and I was blown away by the results. Here is the program int main(int argc, char **argv)[详细]
2023-01-16 03:03 分类:问答How does this address (0x00000400) = 1024
Im working in C++ and I have a #define VAL 0x00000400. when I set a variable equal to the define: int value = VAL; when I run through the debugger is shows the variable value = 1024. could someone exp[详细]
2023-01-15 19:05 分类:问答