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 …
13
votes
2answers
247 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 …
13
votes
11answers
3k views
Do you “final”ize local variables and method parameters in Java?
In Java, you can qualify local variables and method parameters with the final keyword.
public static void foo(final int x) {
final String qwerty = "bar";
}
Doing so results in not being able to …
12
votes
9answers
626 views
Good reasons to prohibit inheritance in Java?
What are good reasons to prohibit inheritance in Java, for example by using final classes or classes using a single, private parameterless constructor? What are good reasons of making a method final?
11
votes
7answers
187 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 …
9
votes
10answers
2k views
Does using final for variables in Java improve garbage collection?
Today my colleagues and me have a discussion about the usage of the final keyword in Java to improve the garbage collection.
For example, if you write a method like:
public Double doCalc(final …
9
votes
5answers
897 views
Why can final constants in Java be overriden?
Consider the following interface in Java:
public interface I {
public final String KEY = "a";
}
And the following class:
public class A implements I {
public String KEY = "b";
public …
6
votes
10answers
538 views
Why avoid the final keyword?
In java, is there ever a case for allowing a non-abstract class to be extended?
It always seems to indicate bad code when there are class hierarchies. Do you agree, and why/ why not?
6
votes
4answers
560 views
immutable class should be final?
Hi,
It says in this article that "Making a class final because it is immutable is a good reason to do so". I'm a bit puzzled by this....I understand that immutability is a good thing from the POV of …
5
votes
8answers
342 views
Is it a bad idea to declare a final static method?
I understand that in this code:
class Foo {
public static void method() {
System.out.println("in Foo");
}
}
class Bar extends Foo {
public static void method() {
…
5
votes
9answers
392 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 …
5
votes
5answers
404 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 make it so that no …
4
votes
5answers
310 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 …
3
votes
4answers
185 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
88 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 …
