1
vote
2answers
146 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() {
…
2
votes
4answers
198 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 …
1
vote
7answers
148 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 …
9
votes
7answers
158 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 …
0
votes
5answers
70 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
137 views
final methods are inlined?
Are Java final methods automatically inlined?
Many books says yes many books says no!!!
3
votes
4answers
155 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. …
-1
votes
2answers
37 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
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 …
2
votes
1answer
86 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)
…
13
votes
2answers
221 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 …
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) …
14
votes
12answers
1k views
When to use final
I've found a couple of references (for example) that suggest using final as much as possible and I'm wondering how important that is. This is mainly in the the context of method parameters and local …
4
votes
9answers
355 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 …
0
votes
6answers
405 views
private final static attribute vs private final attribute
In java, what's de difference between:
private final static int NUMBER = 10;
and
private final int NUMBER = 10;
both are private and both are final, the difference is the static attribute.
What's …
