What is the difference between the terms "Call Stack" and "Stack Trace" ?

link|improve this question

68% accept rate
Can't say I haven't wondered this myself – m.edmondson Sep 20 '11 at 9:02
1  
About 3 letters? </tongueincheek> – Amber Sep 20 '11 at 9:03
feedback

3 Answers

up vote 2 down vote accepted

A call stack is typically "the current stack of operations" - i.e. while it's running.

A stack trace is typically a copy of the call stack which is logged at some sort of failure, e.g. an exception.

In other words, while you're debugging you will look at the current call stack - but when you look at logs, you'll get a stack trace. At least, that's my interpretation of the terms :)

link|improve this answer
How on earth do you fit stackoverflow around your Google work @Jon? :-) – m.edmondson Sep 20 '11 at 9:03
I view it as the stack trace is like the result (trying to think of a better word) of your progress along the call stack? Or is that wrong? – AndyC Sep 20 '11 at 9:04
@AndyC: I'm not sure I understand what "progress along the call stack" means. – Jon Skeet Sep 20 '11 at 9:05
Hmm, I'm potentially wrong then (either that or I'm really bad at explaining :) ). Sort of like if the call stack is the route you're going to take through the application then the stack trace shows you how you've done so far? – AndyC Sep 20 '11 at 9:08
@Jon : So if I say: " Call Stack refers to an ongoing process whereas 'stack trace' refers to a log of a failed process " am I correct? – pencilCake Sep 20 '11 at 9:12
show 2 more comments
feedback

Call stack is a data structure storing information about active subroutines in a running program. Stack trace is a representation of the call stack.

link|improve this answer
feedback

I think Wikipedia does a fairly good job at distinguishing between them:

a call stack is a stack data structure that stores information about the active subroutines of a computer program

A stack trace is a report of the active stack frames at a certain point in time during the execution of a program.

In other words, the call stack is the actual data structure in memory, while the stack trace is a snapshot of said data structure.

link|improve this answer
+1 for the "snapshot" – pencilCake Sep 20 '11 at 9:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.