0
votes
2answers
16 views
Subclassing a final class; or, a Degenerate Decorator
I have a number of different representations of the same kind of object; let's call it a Thing. "Thing" is a marker interface. ThingFormat0, ThingFormat1, ThingFormat2 etc. are all JavaBeans that …
1
vote
2answers
152 views
Java: Why does this method have side effects?
I have a method that is producing side effects, even though certain variables are marked final. Why is this? Perhaps I am confused about what final does.
@Test
public void testSubGraph() {
…
9
votes
7answers
161 views
Behaviour of final static method
I have been playing around with modifiers with static method and came across a weird behaviour.
As we know, static methods cannot be overridden, as they are associated with class rather than …
1
vote
7answers
150 views
Proper way to declare and set a private final member variable from the constructor in Java?
There are different ways to set a member variable from the constructor. I am actually debating how to properly set a final member variable, specifically a map which is loaded with entries by a helper …
0
votes
5answers
77 views
How can I assign final variables of the base class within a derived class’ constructor in Java?
I have a base Color class that looks something like this. The class is designed to be immutable, so as a result has final modifiers and no setters:
public class Color
{
public static Color BLACK …
1
vote
6answers
139 views
final methods are inlined?
Are Java final methods automatically inlined?
Many books says yes many books says no!!!
3
votes
4answers
165 views
public static final variable in an imported java class
hi all,
I happen to come across a Java code at my work place. Here's the scenario: There are 2 classes - ClassA and ClassB.
ClassA has nothing except 4 public static final string values inside it. …
3
votes
4answers
78 views
Serialising and immutable objects
I have a class which is intended for immutable use, hence I would like to label all the fields final.
However the class is serialized and deserialized to send over the network. For this to work an …
13
votes
2answers
228 views
Modifying final fields in Java
Let's start with a simple test case:
import java.lang.reflect.Field;
public class Test {
private final int primitiveInt = 42;
private final Integer wrappedInt = 42;
private final String …
2
votes
4answers
203 views
Java - Why all fields in an interface are implicitly static and final?
I am just trying to understand why all fields defined in an Interface are implicitly static and final. The idea of keeping fields static makes sense to me as you can't have objects of an interface but …
2
votes
1answer
91 views
what does final mean in Groovy
Hi,
If you run the following code in the Groovy console it prints "8"
class F {
private final Integer val = 2
def set(v) {val = v}
def print() {println val}
}
def f = new F()
f.set(8)
…
-1
votes
2answers
41 views
final arraylist declaration
when i declared final arraylist() then can i perform insert,search and update operation in that arraylist or not??please reply me...
thanks in advance
4
votes
9answers
364 views
Should a “static final Logger” be declared in UPPER-CASE?
In Java, static final variables are constants and the convention is that they should be in upper-case. However, I have seen that most people declare loggers in lower-case which comes up as a violation …
4
votes
5answers
293 views
final class in c++
class Temp
{
private:
~Temp() {}
friend class Final;
};
class Final : virtual public Temp
{
public:
void fun()
{
cout<<"In base";
}
};
class Derived : public …
1
vote
3answers
70 views
JavaScript classes which cannot be subclassed
I have a JavaScript class, and I would like to make it so it can't be subclassed. (Similar to marking a class with the "final" keyword in Java.) Here's my JavaScript class:
function Car(make, model) …
