55
votes
13answers
8k views
What and where are the stack and heap
Programming language books usually explain that value types are created on the stack, and reference types created on the heap, without really explaining what these two things are. With my only …
26
votes
22answers
2k views
Why not use pointers for everything in C++
suppose that I define some class
class Pixel {
public:
Pixel(){ x=0; y=0;};
int x;
int y;
}
Then write some code about it. Why would I do
Pixel p;
p.x = 2;
p.y = 5;
Coming from a Java …
22
votes
14answers
2k views
When does ++ not produce the same results as +1?
The following two C# code snippets produce different results (assuming the variable level is used both before and after the recursive call). Why?
public DoStuff(int level)
{
// ...
…
14
votes
6answers
787 views
What is a stack overflow?
What is a stack overflow error? What type of programs/programming languages is it likely to occur in? Is it unlikely to occur in web application code?
13
votes
10answers
1k views
How does the stack work in assembly language?
I'm currently trying to understand how the stack works, so I've decided teach myself some assembly language, I'm using this book:
http://savannah.nongnu.org/projects/pgubook/
I'm using Gas and …
10
votes
9answers
412 views
Stack Size Estimation
In multi-threaded embedded software (written in C or C++), a thread must be given enough stack space in order to allow it to complete its operations without overflowing. Correct sizing of the stack …
10
votes
8answers
754 views
How does a stackless language work?
I've heard of stackless languages. However I don't have any idea how such a language would be implemented. Can someone explain?
10
votes
5answers
369 views
How does a virtual machine work?
I've been looking into how programming languages work, and some of them have a so-called virtual machines. I understand that this is some form of emulation of the programming language within another …
10
votes
6answers
1k views
Why does the Mac ABI require 16-byte stack alignment for x86-32?
I can understand this requirement for the old PPC RISC systems and even for x86-64, but for the old tried-and-true x86? In this case, the stack needs to be aligned on 4 byte boundaries only. Yes, some …
10
votes
11answers
553 views
How to preserve stack space with good design?
I'm programming in C for RAM limited embedded microcontroller with RTOS.
I regularly break my code to short functions, but every function calling require to more stack memory.
Every task needs his …
9
votes
10answers
384 views
Does stack grow upward or downward?
I have this piece of code in c:
int q=10;
int s=5;
int a[3];
printf("Address of a: %d\n",(int)a);
printf("Address of a[1]: %d\n",(int)&a[1]);
printf("Address of a[2]: …
9
votes
6answers
482 views
Is there a way to dump a stack trace without throwing an exception in java?
I am thinking of creating a debug tool for my Java application.
I am wondering if it is possible to get a stack trace, just like Exception.printStackTrace() but without actually throwing an …
9
votes
4answers
475 views
Is it possible to programmatically construct a Python stack frame and start execution at an arbitrary point in the code?
Is it possible to programmatically construct a stack (one or more stack frames) in CPython and start execution at an arbitrary code point? Imagine the following scenario:
You have a workflow engine …
9
votes
8answers
1k views
How to detect possible / potential stack overflow problems in a c / c++ program?
Is there a standard way to see how much stack space your app has and what the highest watermark for stack usage is during a run?
Also in the dreaded case of actual overflow what happens?
Does it …
8
votes
4answers
745 views
Why Java Vector class is considered obsolete or deprecated?
Why Java Vector is considered a legacy class, obsolete or deprecated?
Its use isn't valid when working with concurrency?
And if I don't want to manually synchronize objects and just want to use a …
