1
vote
7answers
141 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 …
9
votes
7answers
151 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 …
0
votes
5answers
69 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 …
1
vote
6answers
135 views
final methods are inlined?
Are Java final methods automatically inlined?
Many books says yes many books says no!!!
3
votes
4answers
141 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 …
3
votes
4answers
74 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. Fo …
2
votes
4answers
191 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 …
13
votes
2answers
212 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 …
2
votes
1answer
78 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 = n …
-1
votes
2answers
31 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
340 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 com …
1
vote
3answers
69 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:
functi …
4
votes
5answers
280 views
final class in c++
class Temp
{
private:
~Temp() {}
friend class Final;
};
class Final : virtual public Temp
{
public:
void fun()
{
cout<<"In base";
}
};
class …
2
votes
10answers
607 views
Cannot refer to a non-final variable inside an inner class defined in a different method
Edited:
I need to change the values of several variables as they run several times thorugh a timer. I need to keep updating the values with every iteration through the timer. I can …
0
votes
6answers
380 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 stati …
