2
votes
4answers
81 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
72 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 …
-1
votes
2answers
21 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
2
votes
1answer
56 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 …
13
votes
2answers
170 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
3answers
157 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 …
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
9answers
309 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 …
4
votes
5answers
262 views
final class in c++
class Temp
{
private:
~Temp() {}
friend class Final;
};
class Final : virtual public Temp
{
public:
void fun()
{
cout<<"In base";
}
};
class …
0
votes
6answers
305 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 …
2
votes
10answers
502 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
7answers
175 views
java basics about final keyword
Can final keyword be used for a method?
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 pa …
4
votes
5answers
337 views
C++: Is there a way to forbid subclassing of my class?
Hi all,
Say I've got a class called "Base", and a class called "Derived" which is a subclass of Base and accesses protected methods and members of Base.
What I want to do now is …
1
vote
5answers
320 views
Final variable manipulation in Java
Hi,
Could anyone please tell me what is the meaning of the following line in context of Java:
final variable can still be
manipulated unless it's immutable
As far as I kno …
