Tagged Questions
An entity in a programming language is called first-class if it can be constructed and manipulated at runtime.
4
votes
3answers
101 views
What are the benefits of types being first-class objects?
Does anybody here have good examples where types as first-class objects come in hand?
I guess it helps to straightforwardly implement some math concepts, indeed that is the kind of examples I'm ...
4
votes
3answers
313 views
Can First-class functions in Scala be a concern for allocating a large PermGen Space in JVM?
Regarding first-class functions in Scala, it is written in the book Programming by Scala:
A function literal is compiled into a
class that when instantiated at
run-time is a function value.
...
3
votes
3answers
974 views
Are primitives different in java and c#?
I am manually converting code from Java to C# and struggling with (what I call) primitive types (see, e.g. ...
2
votes
7answers
2k views
What are first-class objects in Java and C#?
When I started OO programming many years ago I gained the impression that variables (if that is the right word) were either "primitives" (int, double, etc.) or first-class objects (String, JPane, ...
0
votes
2answers
112 views
Python - classmethod in base class accessible via child class, without passing in class
I'm trying to define some methods in a base class that can then be used as class/static methods on a child class, like so:
class Common():
@classmethod
def find(cls, id): # When Foo.find is ...
0
votes
3answers
180 views
Returning a function in C#
I have this snippet
private void westButton_click(object sender, EventArgs ea)
{
PlayerCharacter.Go(Direction.West);
}
repeated for North, South and East.
How can I declare a function that'd ...