Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
13answers
856 views

Consequences of only using stack in C++

Lets say I know a guy who is new to C++. He does not pass around pointers (rightly so) but he refuses to pass by reference. He uses pass by value always. Reason being that he feels that "passing ...
9
votes
2answers
218 views

Why is Scala's behavior in case of overloading with by-name parameters different from the case with by-value parameters?

Given this Scala code: object test { def byval(a: Int) = println("Int") def byval(a: Long) = println("Long") def byname(a: => Int) = println("=> Int") def byname(a: => Long) = ...
6
votes
5answers
3k views

What is “pass-by-name” and how does it work exactly?

I've check wikipedia, and googled but I still can't wrap my mind around how pass-by-name works in ALGOL 60. Thanks!
4
votes
2answers
109 views

How to set a do-nothing handler to a by-name parameter?

I defined a method treeNode to create a node, and which can have children nodes. The simplified code is: def treeNode(text:String) (children: => Any) { val b = new TreeNode(text) children ...
2
votes
1answer
33 views

Is it okay to rely on automatic pass-by-reference to mutate objects?

I'm working in Python here (which is actually pass-by-name, I think), but the idea is language-agnostic as long as method parameters behave similarly: If I have a function like this: def ...
2
votes
6answers
317 views

Is there a language with native pass-by-reference/pass-by-name semantics, which could be used in modern production applications?

This is a reopened question. I look for a language and supporting platform for it, where the language could have pass-by-reference or pass-by-name semantics by default. I know the history a little, ...
2
votes
3answers
256 views

By-Name-Parameters for Constructors

coming from my other question is there a way to get by-name-parameters for constructors working? I need a way to provide a code-block which is executed on-demand/lazy/by-name inside an object and ...