Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

57
votes
12answers
17k views

Why would one mark local variables and method parameters as “final” in Java? [closed]

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 ...
43
votes
4answers
735 views

java: “final” System.out, System.in and System.err?

System.out is declared as public static final PrintStream out. But you can call System.setOut() to reassign it. Huh? How is this possible if it's final? (same point applies to System.in and ...
35
votes
4answers
667 views

Final arguments in interface methods - what's the point?

In Java, it is perfectly legal to define final arguments in interface methods and do not obey that in the implementing class, e.g.: public interface Foo { public void foo(int bar, final int baz); ...
30
votes
4answers
2k 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 ...
28
votes
13answers
21k 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 cannot set the values ...
27
votes
12answers
3k views

When should one 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 ...
24
votes
9answers
6k views

Why should I use the keyword “final” on a method parameter in Java?

I can't understand where the final keyword is REALLY handy when it is used on method parameters. If we exclude the usage of anonymous classes, readability and intent declaration then it seems ...
21
votes
3answers
9k views

change private static final field using java reflection

I have a class with a private static final field, that unfortunately i need to change at run time. using reflection i get this error: java.lang.IllegalAccessException: Can not set static final ...
20
votes
2answers
1k views

How does “final int i” work inside of a Java for loop?

I was surprised to see that the following Java code snippet compiled and ran: for(final int i : listOfNumbers) { System.out.println(i); } where listOfNumbers is an array of integers. I ...
20
votes
6answers
949 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 ...
20
votes
9answers
4k 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 ...
19
votes
8answers
1k views

Java's final vs. C++'s const

The Java for C++ programmers tutorial says that (highlight is my own): The keyword final is roughly equivalent to const in C++ What does "roughly" mean in this context? Aren't they exactly the ...
19
votes
11answers
6k views

Why is String final in Java?

From when I learned that the class java.lang.String is declared as final in Java, I was wondering why is that? I didn't find any answer back then, but this post: How to create a replica of String ...
18
votes
11answers
10k 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 ...
15
votes
8answers
17k 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 ...
14
votes
9answers
989 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?
13
votes
5answers
552 views

Everything's Final

I've been using PMD to help spot potential problems in my Java code, and I've been finding its advice to be split between the useful, the idiosyncratic, and the "WTF?!". One of the things it keeps ...
12
votes
6answers
279 views

Equivalent of const(C++) in Java

I was wondering if there was an equivalent to c++'s const in Java. I understand the final keyword, but unfortunately I cannot use that to declare a functions return value final. Instead, it always ...
12
votes
11answers
828 views

Does the Java 'final' keyword actually improve security?

While there are many reasons to use the 'final' keyword in Java, one of the ones I keep hearing over and over again is that it makes your code more secure. While this seems to make sense in this ...
12
votes
5answers
3k 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 ...
11
votes
6answers
1k views

Does use of final keyword in Java improve the performance?

In Java, we can see lots of places where final keyword can be used but we are not used to it. For eg. String str = "abc"; System.out.println(str); In above case str can be final but we usually ...
11
votes
3answers
1k views

final transient fields and serialization

Is it possible to have final transient fields that are set to any non-default value after serialization in Java? My usecase is a cache variable — that's why it is transient. I also have a habit of ...
11
votes
6answers
1k views

Why is there no Constant keyword in Java?

I was trying to identify the reason behind the "CONSTANTS" in Java I have learnt that Java allows us to declare constants by using final keyword. My question is why didn't Java introduce Constant ...
11
votes
9answers
7k views

Are final static variables thread safe in Java?

I've read around quite a bit but haven't found a definitive answer. I have a class that looks like this: public class Foo() { private static final HashMap<String, HashMap> ...
11
votes
10answers
1k 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?
10
votes
4answers
273 views

What is the difference between final, finally, and finalize?

I'm new to Java and I want to know what is the difference between final, finally, and finalize? Thanks
10
votes
10answers
661 views

Java: Memory usage of the final keyword?

When you declare a final variable (constant) in a class, for example: private static final int MyVar = 255; How much memory will this require if I have 100,000 instances of the class which declared ...
10
votes
1answer
153 views

Unexpected output when using a ternary operator and final variable

Consider this code snippet: public static void main(String[] args) { int z1 = 0; final int z2 = 0; System.out.println(false ? z1 : 'X'); System.out.println(false ? z2 : 'X'); } When ...
10
votes
4answers
2k views

immutable class should be final?

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 ...
9
votes
4answers
778 views

How to override the (final) equals method in java enums?

I have a problem with overriding the equals method in an Enum to make it compatible with other classes. The Enum implements an interface and the idea is that all implementations of this interface can ...
9
votes
8answers
393 views

Is static code always executed when we use a class for the first time?

Our application is using initialization code that depends on the order static code is executed and I'm wondering if this order will be consistent across all JVMs. Here is a sample of what I mean: ...
9
votes
3answers
613 views

Scala and the Java Memory Model

The Java Memory Model (since 1.5) treats final fields differently to non-final fields. In particular, provided the this reference doesn't escape during construction, writes to final fields in the ...
9
votes
4answers
3k views

Java - Can final variables be initialized in static initialization block?

Up to my theoretical knowledge, static variables can be initialized in static initialization block. But when I tried to implement the above (static variables that are final too), I got an error as ...
9
votes
4answers
1k views

Is there a way to forbid subclassing of my class?

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 other ...
8
votes
2answers
120 views

Final field semantics & deserialization with setAccessible(true)

According to the Java Memory Model, a final field initialized in the object's constructor not subject to further modifications is guaranteed to have its value correctly seen by every thread reading ...
8
votes
3answers
164 views

How could not using “final” be a security issue?

This quote is from O'Reilly's Essential ActionScript 3.0: Methods that are final help hide a class’s internal details. Making a class or a method final prevents other programmers from extending ...
8
votes
5answers
966 views

Why defining class as final improves JVM performance?

Quoting from http://sites.google.com/site/gson/gson-design-document: Why are most classes in Gson marked as final? While Gson provides a fairly extensible architecture by providing ...
8
votes
4answers
2k views

java serialization and final fields

I have an class defining an immutable value type that I now need to serialize. The immutability comes from the final fields which are set in the constructor. I've tried serializing, and it works ...
8
votes
4answers
7k views

public static final variable in an imported java class

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. Its ...
8
votes
3answers
477 views

Purpose of final and sealed

Why would anyone want to mark a class as final or sealed?
8
votes
6answers
2k 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 ...
8
votes
3answers
3k views

creating final variables inside a loop

is this allowed in java: for(int i=0;i<5;i++){ final int myFinalVariable = i; } The keyword of my question is final. Is it allowed to do a final variable that changes with every run of the ...
7
votes
5answers
158 views

What is the difference between having a class as final and having a class constructor as private

What exactly is the difference between a final class and having a class constructor as private. I know both can't be subclassed(correct me if i am wrong). Is their any difference?
7
votes
7answers
199 views

'final' modifier on a class in Java

I have a quick and simple question. I have a habit of making every class 'final' unless of course, it needs to be extended by another. Is this a bad habit? A good habit? Does it even matter? I ...
7
votes
2answers
416 views

Java 7 - Precise rethrow with a final Exception

In previous versions of java, rethrowing an exception was treated as throwing the type of the catch parameter. For example: public static void test() throws Exception{ DateFormat df = new ...
7
votes
2answers
298 views

final and private static

I read that doing: public final void foo() {} is equals to: private static void foo() {} both meaning that the method is not overridable! But I don't see the equivalence if a method is private ...
7
votes
3answers
395 views

Assigning a default value to a final variable in case of an exception in Java

Why won't Java let me assign a value to a final variable in a catch block after setting the value in the try block, even if it is not possible for the final value to be written in case of an ...
7
votes
7answers
805 views

Why can final object be modified?

I came across the following code in a code base I am working on: public final class ConfigurationService { private static final ConfigurationService INSTANCE = new ConfigurationService(); ...
7
votes
6answers
669 views

Make private methods final?

Is it beneficial to make private methods final? Would that improve performance? I think "private final" doesn't make much sense, because a private method cannot be overridden. So the method lookup ...
7
votes
1answer
1k views

Where are Java final local variables stored?

Take the following example: public void init() { final Environment env = new Environment(); Runtime.getRuntime().addShutdownHook(new Thread() { public void run() { ...

1 2 3 4 5 6