New answers tagged terminology
0
In theory any instance method of Object would work, though there's not a stand-out one for being cheap. The two most likely would be theReference.hashCode() and theReference.equals(theReference) (or maybe theReference.equals(null). Java standards require that any method call be evaluated for effect, so these calls would not be eliminated by the compiler or ...
0
Just before creating you object, you could check the params using the word assert, i.e :
assert yourValue != null
Another possibility (since Java 7) is to use the method requireNonNull direclty in your constructor/method, here's an example with the constructor :
public Foo(Bar bar, Baz baz) {
this.bar = Objects.requireNonNull(bar, "bar must not be ...
0
null pointer exception is showing up when you have some object which not initialized (default value of non-initialized object is null).
Thats mean, if you want to check wether object is null or not, you should use comparison operator. e.g if (object == null) // do something
5
defensive coding is the practice.
public void go(String s)
{
if(null == s)
//do something
else
// normal execution.
}
0
It is a bit arbitrary, but one thing all of the software engines I have seen have in common is the ability to run arbitrary code. That is certainly true of V8(javascript), and Unreal engine (unrealscript). They differ from VMs in that they don't define an abstract machine like the JVM does. Interpreter often doesn't fit the bill either, V8 JIT compiles it ...
0
I would say that if you make an API for a complete task (like interpreting javascript or rendering 3d graphics) then you could call it an engine. But there is no exact definition. It is more of a way to find a proper word for what you have created. Same goes for framework.
1
An engine is an analogy. A software engine runs another layer of code, normally.
One characteristic of a software engine: it isn't meant to stand on its own. It supplies the motor... but leaves it to you to make a finished car.
2
No. Things are called engines when their creator(s) wants to call them an engine.
0
There's no Person MVC or other object MVC. There is MVC which is an application structuring pattern. It's true that you can use a Person in the Model or you might have a PersonController and a View which will use a Person but this is only MVC applied. Don't overthink the patern too much, it's meant to separate concerns that's all.
You have 3 layers using a ...
4
The positive natural numbers are infinite and clearly enumerable (1, 2, 3, …). The concept is well-defined even outside of C#.
Your class however has problems because you are confusing the IEnumerable and IEnumerator interface. The GetEnumerator method returns only one enumerator. That is infinite.
An easy implementation of an infinite IEnumerable in C# ...
5
And is an infinite enumerable still enumerable?
Enumerable, in this sense, is based off the second definition of enumerate:
to specify one after another
It is not referring to the (more common outside of computing) definition whereby it effectively means "able to be counted."
In this sense, an infinite series can definitely be listed one item ...
0
Passing by reference is, in effect, passing a reference to a value -- rather than a copy of it -- as an argument.
I guess before we go on, certain things should be defined. I may be using them differently than you're used to seeing them used.
A reference is an alias, or handle, to an object. At the language level, a reference mostly acts like ...
0
Simple Answer:
Depth:
1. Tree: Number of edges/arc from the root node to the leaf node of the tree is called as the Depth of the Tree.
2. Node: Number of edges/arc from the root node to that node is called as the Depth of that node.
0
In your example, http://example.org/users/123/comments points to a resource. A complete URI is an identifier for a resource.
Let me give you an extreme example,
/users/123/comments.xml
/users/123/comments.json
are two different resources.
The query string also identifies resources, so
/users/123/comments?format=xml
/users/123/comments?format=json
...
0
REST is a Resource-Oriented. URLs represent resources.
In your example, /users/123/comments:
users is a resource.
123 is the unique identifier of an user.
In this case, comments are a sub-resource of users, but they are probably resources on their own (ex. calling /comments/{id})
About your second question, the format for /me/purchases is not the same ...
1
\f is used for page break.
you cannot see any effect in console.but when you use this character constant in your file then you can see the difference.
other example is that if u can redirect your output to a file then you dont have to write a file or use file handling.
for ex:->
write this code in c++
void main()
{
clrscr();
cout<<"helloooooo" ;
...
0
From the Book, 'Well-Grounded Java Developer: Vital techniques of Java 7 and polyglot programming
DI is a particular form of IoC, whereby the process of finding your dependencies is
outside the direct control of your currently executing code.
0
I found this nice video on the Clojure subreddit about FRP. It is pretty easy to understand even if you don't know Clojure.
Here's the video: http://www.youtube.com/watch?v=nket0K1RXU4
Here's the source the video refers to in the 2nd half: https://github.com/Cicayda/yolk-examples/blob/master/src/yolk_examples/client/autocomplete.cljs
0
I would go with the term depth.
XML is Tree based representation and so is DOM.
If we take a Tree as an example:
Depth of a node denotes the #of edges between that node and the root. This is invariant.
On the other hand "level" is arbitrary. Level values are determined by what level I place the root node at (level 0 or level 1)
Since you are developing ...
0
level and height are same but depth is the is maximum distance from any node to root... and reverse in the case of height.
0
Depth for a specific position in the tree, level for traversing the tree. I.e Go down one level from depth 5.
What is the depth of your level?
What is the level of your depth?
How many levels from the depth 5 are you?
How many depths from the level 5 are you?
5
A "level" represents all nodes that have the same depth within a tree (a grouping construct).
The depth is therefore the integer representing the relative distance from the root node to any other node.
So imho I would go for "depth" as the integral value, and all nodes with the same "depth" are on one "level".
2
I would go with depth.
Apparently a lot of people use level and depth interchangeably. But in my understanding level can refer to how far away from the root element one element is or to all element that share the same distance to the root element.
To avoid this ambiguity I would prefer depth.
In addition trees are usually presented with their root ...
2
The term "RTTI" is a C++-specific term referring to the functionality of the core language that allows the program to determine the dynamic types of various objects at runtime. It usually refers to the dynamic_cast or typeid operators, along with the associated std::type_info object produced by typeid.
The term reflection, on the other hand, is a generic ...
2
The non-standard strdup function does two things: it allocates dynamic memory and it copies the string. It is the very same thing as calling malloc followed by a call to strcpy (which is why strdup is a 100% superfluous function).
When you do strcpy(list[list_size],test), list isn't pointing at any allocated memory - it is pointing at a random memory ...
2
char *list[MAX_LIST_SIZE];
Here, the elements of list are uninitialized, they don't point to valid memory, hence your program invokes undefined behavior. strcpy() returns a pointer that's either NULL or points to some malloc()ated memory, which is, consequentially, valid.
0
For me partial application must create a new function where the used arguments are completely integrated into the resulting function.
Most functional languages implement currying by returning a closure: do not evaluate under lambda when partially applied. So, for partial application to be interesting, we need to make a difference between currying and ...
7
I like to prefer Depth, but why? See below what I believe.
As we know, XML is a Node based structure.
We all know that in Data Structures we use both terms at widely.
If we talk about a Binary Tree structure we generally say
In which depth level a node is situated/located?
We also use this term in DFS (Depth First Search) and BFS (Breadth First ...
2
I would refer to them as "properties" since PHP lacks the notion of properties as defined elsewhere (C#).
Edit, moreover, properties are the very term defined in the PHP manual:
Properties
Class member variables are called "properties". You may also see them referred to using other terms such as "attributes" or "fields", but for the purposes of ...
1
It calls the InitializeComponent(); to draw all controls on the form.
The call for the InitializeComponent is standard in the form's constructor.
The code within the InitializeComponent method is auto generated by what you are dragging to the form. The size, location, looks, etc of a control gets set there.
7
To me level means going up, and depth means going down.
So I'd pick depth.
But I've learned a rule: If you can't pick between two options it's because both options are equally good, so flip a coin and move on.
1
In Entity Framework an entity is largely equivalent to a class in the conceptual model (or the class model, which is mapped to the store model).
In domain model terms an entity is
An object that is not defined by its attributes, but rather by a thread of continuity and its identity.
(Source: Wikipedia)
That quite a mouthful for "an object with an ...
0
An entity is simply an object that represents some form of relational data. This is typically used for representing relational databases, but it is not confined to that. I suggest looking at http://msdn.microsoft.com/en-us/data/aa937709 for a brief overview of how the Entity Framework works.
19
A fold replaces every constructor with a function.
For example, foldr cons nil replaces every (:) with cons and [] with nil:
foldr cons nil ((:) 1 ((:) 2 [])) = cons 1 (cons 2 nil)
For a tree, foldTree branch leaf replaces every Branch with branch and every Leaf with leaf:
foldTree branch leaf (Branch (Branch (Leaf 1) (leaf 2)) (Leaf 3))
= branch ...
31
Tikhon's got the technical stuff down. I think I'll try to simplify down from what he said.
The term "folding" has, unfortunately, become ambiguous over the years to mean one of two things:
Reducing a collection sequentially in some order. In Haskell, this is what "folding" means in the Foldable class, which larsmans brings up.
The notion you asked ...
0
If you're talking in terms of a 'stack', as in the data-structure, then depth is the preferred term. From the perspective of an XML document, both nesting depth and level seem to be in common usage. A quick google survey shows roughly 600000 results for 'xml nesting level' and 'xml nesting depth'.
I'd say pick one and stick with it consistently in the ...
49
A Fold for Every Occasion
We can actually come up with a generic notion of folding which can apply to a whole bunch of different types. That is, we can systematically define a fold function for lists, trees and more.
This generic notion of fold corresponds to the catamorphisms @pelotom mentioned in his comment.
Recursive Types
The key insight is that ...
6
I would call this a fold, and declare Tree a Foldable. See the Foldable example in the GHC docs.
0
DTO - Data Transfer Object comes to mind. Also Model or ViewModel.
2
I would call it a Container class.
6
The image is the size of the executable code in memory.
In general, "X uses more memory than Y" could refer to both the runtime image size and the amount of space allocated for non-executable data. This quotation is clarifying that both are worse in the debug version.
0
Since the related transformation of requirements is called "lifting" I suggest the same for concepts. C1 is a lifting of C2. However someone with native English should better help here.
0
Programmer and coder are too colloquial for a job title in my opinion. Developer may be a bit too unspecific. Software developer may be the right thing for you.
-1
polymophism is when different objects respond to the same method in a different way. for example a car move in the road while a person walk in the road, those are two objects responding to the same road in a different way.
0
Doesn't "dependency injection" just mean using copy constructors and public setters?
Constructor without dependency injection:
public class Example {
private DatabaseThingie myDatabase;
public Example() {
myDatabase = new DatabaseThingie();
}
public void DoStuff() {
...
myDatabase.GetData();
...
}
}
Constructor with ...
5
Note: I just made this definition up, but it fits my mental model, so I'm going with it.
Iteration is discrete, traversal may or may not be. So, you can traverse the range of allowable volumes on the analog volume knob on your speaker, but you cannot iterate through them.
But iteration is a type of traversal. So every iteration is a traversal, but not ...
3
I would call iterator the "agent" and traverse the "action". Actually, it often confuses me when people refer to traversing over something as iterating over something (because to me iteration is related to numerical methods which are converging towards a mathematical point via iteration). On the other hand, even I use the words interchangeably.
You cannot ...
9
“Traversal” just means walking through (all or some) elements of a data structure.
Historically, “iteration” in computer science is a special form of recursion for which no additional stack space is needed1 – in other words, tail recursion. This form is computationally exactly equivalent to what we now colloquially know as “iteration”, namely a finite loop ...
Top 50 recent answers are included





