Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
3answers
187 views

Why did microsoft's developers choose to make the .NET a stack based machine?

Today I've found the Disassembler IL between the tools provided with VS2008. I tried to disassemble a program and give a look to the result. Opcodes weren't so hard to understand but one thing ...
10
votes
6answers
1k views

For what applications is Forth best suited?

I am intrigued by stack-based languages like Forth. Are there situations where Forth is the best tool for the job or is it just an intellectual and historical curiosity? What about derivative ...
10
votes
9answers
3k views

registers vs stacks

What exactly are the advantages and disadvantages to using a register-based virtual machine versus using a stack-based virtual machine? To me, it would seem as though a register based machine would ...
5
votes
1answer
69 views

Why are register-based virtual machines better than stack-based ones?

Why are register-based virtual machines better than stack-based ones? Specifically, in the Parrot VM's document, the designer explains the benefits of register machines: [...] many programs in ...
4
votes
2answers
317 views

Building a web application with Factor

Has anybody built a web application with Factor? What were some of the stumbling blocks or problems that you encountered during the process?
2
votes
1answer
51 views

Stack based array declaration in Objective-C?

In Objective-C, I declare a C array like this: int length = 10; int a[length]; This does not cause any errors in Xcode but other compliers like Visual Studio. Please tell me how it works. ...
1
vote
1answer
53 views

Recognition of stack-bases language

Does anyone know what language this could be? ([][(![]+[])[!+[]+!+[]+!+[]]+(!![]+[][[]+[])[+[]]+([![]]+[][[]]) ...
1
vote
5answers
560 views

I need C++ array class template, which is fixed-size, stack-based and doesn't require default constructor

So, I've been looking at boost::array but it does require default constructor defined. I think the best way of filling this array with data, would be through a push_back(const T&) method. Calling ...
0
votes
3answers
55 views

CANNOT copying char into last address of char* ( string )?

i would like to copy data of char* to another last address of char* illustration var1 -> O var2 -> K first step var1 -> OK var2 -> K copy var2 to var1 result var1 -> OK ...