Tagged Questions
0
votes
4answers
56 views
Checking for null pointers
I'm looking for a phrase that forces the checking for null values before passing them through to an object and then when the object has been called that the first thing that is checked in the method ...
2
votes
1answer
43 views
Difference between RTTI and reflection in Java
My question is when how does the class info gets loaded during runtime?
When someone calls instanceof is that considered RTTI or reflection? Or it depends on the actual situation?
0
votes
3answers
75 views
Why is Java's “protected” less protected than default? [closed]
In Java, we have four access specifiers: public, protected, package-private (default), and private. This is well known and not an issue for me.
My question is with regard to the naming of protected. ...
0
votes
1answer
50 views
Java OO — An object that provides a new way to interact with other objects?
Let's say I have a List<Apple> object, and each apple has a color.
I implement another object that is constructed with its input the list of apple objects. I might implement functionality on ...
1
vote
2answers
113 views
Lock/monitor/critical section extension?
How is it called when critical section is extended in subclass or caller function?
Suppose class A has synchronized methods m1 and m2
class A {
public synchronized void m1() {}
public ...
0
votes
3answers
305 views
How is the Comparable interface is marker interface, with its compareTo() method?
How is the Comparable interface is marker interface, even though it defines a compareTo() method?
Please explain detail.
0
votes
2answers
91 views
Class, Object, Entity: What's the difference?
I also see other terms as well: Entity Object, Value Object, etc. Are there other terms out there that I should know, and what do these terms refer to?
Can the differences between them, if any, be ...
0
votes
2answers
97 views
Is “derived” in C++ the same thing as “extended” in Java?
As the title states: when I "derive" a class in CPP, that's pretty much the same thing as "extending" a class in Java, yes?
1
vote
1answer
163 views
Difference between binding and mapping
Is there a semantically difference in the terms
binding
mapping
in means of binding an object model to another representation, for instance XML. Does one include only the one-way mapping or are ...
4
votes
5answers
798 views
terminology of Class “attribute” vs “member” vs “variable” vs “field”
It seems that developers often use these terms interchangeably when referring to a piece of data stored in an instance of a Class. Is there any technical difference between each term, or is it fine to ...
0
votes
2answers
140 views
Does “fork” always mean parallel in java?
I am new to java world. Some names sound very funny for me.
One of them is fork... I guess it takes the fork for food to mean parallel.
Is it always the case?
For example: If I see a function ...
-1
votes
1answer
39 views
Interfaces with respect to the term API
I am trying to get a handle on the above. I understand that an interface contains method signatures with no implementation. That task is left up to the classes that implement the interface. I am ...
0
votes
4answers
40 views
Terminology of class components
Could you tell me what is the name of ArrayList<Image> (4th line) in Java terminology in the following code?
public class ImageCollection {
private int imageNum; // ...
3
votes
1answer
635 views
@Model annotation and MVC
The Weld documentation states that the javax.enterprise.inject.Model annotation is designed for Controllers (logical because it marks bean as @RequestScoped and @Named).
But why is it named as Model ...
1
vote
1answer
321 views
STL library vs JCF framework
Why is the STL considered a library, but the JCF a framework? What exactly is it in their respective designs that causes/justifies this distinction? Can you give a code example that illustrates this?
4
votes
7answers
1k views
What is Stateless Object in Java?
Currently i'm reading "Java concurrency in practice", which contains this sentence :
Since the action of a thread accessing a stateless object cant not affect the correctness of operations on ...
2
votes
3answers
598 views
What does “Container” mean in the context of programming?
I am learning Spring and the term "Spring Container" frequently shows up in the text. However, I know "container" is not used only in Spring (EJB container etc) so what does it mean when used in the ...
3
votes
0answers
90 views
Code that changes frequently [closed]
Is there a specific word that can be used to refer "Code that changes frequently".
For eg. A "Boilerplate code" refers to sections of code that is repeated often in different classes with little ...
4
votes
2answers
1k views
Java SAXParser: Different between `localName` and `qName`
In Java, Handler class contains method which name is startElement.this method has prototype:
public void startElement(String uri, String localName, String qName, Attributes attributes)
I have read ...
11
votes
4answers
3k views
Java pass by reference
What is the difference between this 2 code:
Code A:
Foo myFoo;
myFoo = createfoo();
where
public Foo createFoo()
{
Foo foo = new Foo();
return foo;
}
Vs. Code B:
Foo myFoo;
...
1
vote
1answer
171 views
What is meant by “Component model”
I am reading EJB 3 in Action and they use the term "Component model" or "Component". What do they mean? What is the difference between a component model and a component?
0
votes
3answers
103 views
Clear list of distinctions between an API, Library, Framework, and Toolkit in Java [closed]
I've lots of varying definitions for the following terms, but I'm not clear as to the distinctions between them. Would someone please clarify the following and the distinction(s) between each item?
...
14
votes
2answers
4k views
What is a class invariant in java?
I googled the topic, but besides Wikipedia I didn't find any further useful documentation or articles.
Can anybody explain to me in simple words what it means or refer me to some nice and easy to ...
2
votes
1answer
52 views
Language certification and the usage of terms like appropriate vs correct vs legal [closed]
I'm studying for the SCJP (inanely over-technical java certification)
In my readings, I'm running into questions telling me to judge "appropriate", "correct", or "legal" usage of something. I know ...
0
votes
3answers
105 views
What do you call an implemented Enum type?
As part of my Bachelor Thesis, I implemented an Enum type (with the constants and some methods) for the project I am working on. However, I am unsure how to call it in the thesis itself. I started ...
1
vote
2answers
247 views
Confuse among JavaBeans, POJO, beans?
As far as I know, JavaBeans are the simple getter and setters methods of whatever fields are there in your Java class, on the other hand POJO seems similar (fields and its getter/setter) whats the ...
3
votes
3answers
2k views
What is container in spring framework
I was going through this article
http://www.vaannila.com/spring/spring-ioc-1.html and here the term
container is used. The diagram below shows container... what is
container in this article. Is it a ...
-1
votes
4answers
459 views
difference between forwarding and redirection [duplicate]
Possible Duplicate:
difference between jsp forward and redirect
Does anyone knows the differences between forwarding and redirection in Http servlets and the impact of these differences on ...
1
vote
2answers
87 views
Java SE generics documentation
Heap Pollution
documentation says in the last paragraph of this section that The static type second formal parameter of the add method is String, but this method is called with an actual parameter of ...
7
votes
4answers
369 views
Immutable and pass by value
I have the following code which has
a mutable Person class, String and a method to modify the instances of String and Person
class Person{
int a = 8;
public int getA() {
return a;
}
public ...
12
votes
8answers
1k views
What exactly does “pass by reference” mean?
And who has the authority to decide?
Edit: Apparently I haven't succeeded in formulating my question well.
I am not asking how Java's argument passing works. I know that what looks like a variable ...
0
votes
1answer
76 views
What is the term used to describe assigning values to an object without first instantiating it?
E.g.
Car myCar = Car.Ford
instead of
Car myCar = new Car();
myCar = Car.Ford
3
votes
4answers
311 views
What is atomic?
These are two atomic operations:
int value = 5;
Object obj = new Object();
But when using a primitive as a method parameter, would this be considered as an atomic operation:
public void ...
1
vote
4answers
148 views
Java conditional return terminology
Java seems to make a distinction in its terminology between "errors", "assertions" and "exceptions." However, there is no defined terminology (that I can see) of a conditional check and return on ...
3
votes
6answers
545 views
Is Java really passing objects by value? [duplicate]
Possible Duplicate:
Is Java pass by reference?
public class myClass{
public static void main(String[] args){
myObject obj = new myObject("myName");
changeName(obj);
...
1
vote
2answers
255 views
Is `this` a pointer in Java?
I have read there is no pointer concept in Java, however I have also read several times that this is a keyword in Java that refers to the current object. I am still confused as to whether this can be ...
5
votes
3answers
198 views
What is the difference between “descriptor” and “signature”?
I am now using ASM (Java bytecode instrumentation library). To retrieve the signature of given method, there is a field which is named "desc". I guess this is an abbreviation of "descriptor", but why ...
1
vote
1answer
513 views
Difference between 'component architecture' and 'modular architecture'
OSGi is a modular architecture, JavaBeans is a component architecture.
What's the diff?
9
votes
5answers
8k views
Definition of a Java Container
I've read\heard many times about java containers such as a servlet container, however, I can't seem to find a good definition of what a container is in the enterprise java world.
Does anyone know of ...
1
vote
3answers
120 views
What do you mean by the caller of a method in Java?
I am confused about what a caller of a method menans in Java. Can someone clarify that with an example?
1
vote
2answers
1k views
What is xml normalization? [duplicate]
Possible Duplicate:
What does Java Node normalize method do?
What is xml normalization .I found following in javadoc but i cant understand it?Can anyone help?
public void normalize()
...
13
votes
3answers
1k views
What's the difference between anonymous classes in Java and closures?
It looks like anonymous class provides the basic functionality of closure, is that true?
1
vote
2answers
140 views
What is the correct term for a method whose only purpose is to call another method?
Occasionally there will be a method that calls another method and does nothing else. I'll demonstrate with an example:
void foo() {
bar();
}
void bar() {
// do some actual work
}
Is there ...
9
votes
5answers
8k views
Difference between servlet and web service
What is the difference between these 2? I found few results on google nothing conclusive.
Here is a follow up question:
Say I create spring mvc web app annotate couple of classes with @Controller ...
0
votes
2answers
47 views
What is the (preferrably one-word) primary term for @XToX annotated fields?
Question pretty much says it all.
You can read "entity association" here, but there's "relationship" here
Which term is the primary one? (Sorry, I don't have access to the JPA spec.)
"Entity" ...
0
votes
6answers
212 views
Terminology: one-word Java term for instance variables?
I'm looking for an alternativ OO/Java term of instance variables declared in a class (non-static), or more specifically in a Java class "decorated" with JPA annotations:
@Entity
@Table(name = ...
1
vote
5answers
300 views
What is HotSpot?
I just heard of the HotSpot JVM, as opposed to the Oracle JRockik JVM. What is Hotspot? Is this old the Sun JVM, or something else?
1
vote
3answers
3k views
What is Serialization and Deserialization conceptually? [duplicate]
Possible Duplicate:
What is object serialization?
Want to get idea behind the serialization and de-serialization of object.A simple example would be appreciated.
1
vote
3answers
1k views
What is multiplex socket communication?
I searched the "multiplex socket" on internet, but couldn’t found out the difference between multiplex socket and normal socket behaviors.
Normal socket also can communicate on both directions (read ...
15
votes
6answers
9k views
Isn't “package private” member access synonymous with the default (no-modifier) access?
I am a little confused over the term "package private" that some of the documentation uses, along with the usage of "default access." Aren't package private and default access both synonymous with ...



