final is a common keyword specifying that the reference declared as final cannot be modified once it is initialized.

learn more… | top users | synonyms

0
votes
3answers
81 views

Final and Static Final usage in Java

This is from the Ex18 of Chapter "Resuing Classes" in "Thinking in Java". The code is as below: public class E18 { public static void main(String[]args) { System.out.println("First ...
0
votes
1answer
80 views

Is “final static variables ” efficient in Java (Android)?

I'm developing an app in Android. I use a lot "final static" variables to define my constants. But I'm very stric with the memory used by my application. Maybe I have 200 constants (int, string, ...
2
votes
4answers
52 views

Why the custom java class should be final

I worked with the IBM Rational Software Architect for Websphere Software(RAD) and ran the code analyzer. I got the warning said the custom java class should be final. But there is no proper reason for ...
0
votes
2answers
39 views

Unable to setVisible(false) of JFrame

I am creating a Medical Shop Billing software in which I have three JFrames one of which I need to setVisible(false) on the click a JMenuItem. However each time I compile an error is displayed ...
3
votes
1answer
45 views

PMD violation on for each loop (final or not?)

I just recently found out about PMD and want to improve my code with it. Therefore I have enabled all rules (and got 47000 violations :P). Anyway, I have a problem with this one: double vStd = 0, ...
0
votes
2answers
43 views

Adding ArrayList items to a user-defined class with final values in Java

I have a text file with thousands of lines of data like the following: 38.48,88.25 48.20,98.11 100.24,181.39 83.01,97.33 I can separate each "double" value just fine, but I'm having trouble adding ...
0
votes
8answers
74 views

Strange Behavior in final variable in Java [duplicate]

In my java program i have used one final variable.We know that the value of any final variable is fixed and can't be changed.so why this particular program is working fine?Can anyone explain. public ...
0
votes
2answers
56 views

Is there any performance gain from using final modifier on non-primitive static data?

Is there any performance gain from using final modifier on non-primitive static data in Java? For example: static final Thread t2 = new Thread(new Thread_2()); versus: static Thread t2 = new ...
2
votes
1answer
46 views

Allowing final fields to take default values

I am writing a parser for a binary file format. I have created classes to represent the deserialized structures I am reading, in which I would like to use final variables to hold the extracted data. ...
4
votes
3answers
62 views

Java impose final programmatically

What's the proper way to ensure a value only gets set once, although the time it will be set is unknown (ie: not in the constructor). I could do a null check or keep track of a flag and throw an ...
0
votes
1answer
35 views

Interface Variables

public interface A { public final int a = 0; } Many books say that all variables (constants) in an interface are implicitly public static final yet when I type the above statement explicitly ...
-1
votes
2answers
39 views

“Once-initialized” variables that are not initialized in construction time

Is there any way in Java to create variables like final that are not initialized inside the constructor, but yet once they are initialized they can never be changed again? My problem is that I get the ...
0
votes
3answers
44 views

final variable keeps changing but shouldnt

I am engineering a program for my bachelor thesis that displays the inner geometry of a steel wire rope depending on the z location (location in the cable). To test I "walk through" a piece of the ...
0
votes
4answers
31 views

java interface static final object equality error

I have a problem. I'm create numeric interface, and I'm create static final object in interface. If I modify the objects and checks the equality, returns true. I overriden the 'equals', the problem is ...
0
votes
3answers
73 views

Java code no longer compiles after factoring out exception throwing to private final function

Have a look at this simple Java code: final class A { public static void main(String[] args) { int x = 3; boolean b; switch(x) { case 1: b = ...
1
vote
4answers
48 views

Interface Vs Final class to store the final variables

I have a class which contains only final variables. E.g: public class Constants { public static final String PREFIX = "some prefix"; public static final String SUFFIX = "some suffix"; ...
1
vote
1answer
69 views

SmartGWT ListGrid final

I realized that ListGrid must be always Final. For me a static object would be the best because I would like to modify its properties from another class. In my project to have a clear code I created ...
-6
votes
1answer
39 views

Java - What is method and a method parameter? And what is 'final'? [closed]

In our homework we been told to comment (//) on parameters before every method and describe what it receives and what it's supposed to do. Another thing they asked is to use "finals" in the correct ...
-1
votes
2answers
64 views

Java - Flight Schedule [university's homework] [closed]

I'm supposed to program a flight schedule and ran into a little problem. The user has to insert: Departure Day (1 - 7, when 1 means the first day of the week and 7 the last day of the week). ...
7
votes
3answers
131 views

final variable case in switch statement

final int a = 1; final int b; b = 2; final int x = 0; switch (x) { case a:break; // ok case b:break; // compiler error: ...
0
votes
3answers
33 views

Can I acess a final object's methods?

I have to declare a parameter on my method final to access it through a Runnable but can I still access the methods? I need to edit the object a bit. I can't seem to find anything that can help me ...
0
votes
4answers
74 views

Please explain final AtomicReference

can someone explain me this: final AtomicReference<Integer> atomicReference = new AtomicReference<>(1); atomicReference.set(2); In what sense is final used?
-1
votes
0answers
38 views

Are there (Performance) benefits of Views in Android that use the final keyword e.g final EditText?

I am new to Android Development but not so fresh at coding in Java. I know the optimization benefits of using the final keyword and final static in Java. Wikipedia gives a good explanation of final ...
-2
votes
1answer
75 views

Ideas for Final Algorithms Project [closed]

So I have a final project for my Algorithms class in which I have to pick a problem, implement any algorithm of my choice, then solve it. The hard part is, I can't really seem to think of any cool ...
0
votes
1answer
52 views

Efficient Adapter implementation

I have in my code two types for Adapter implementations and I'm not sure which one is better. Here is my updater pattern: public View getView(int position, View convertView, ViewGroup parent) { ...
0
votes
0answers
19 views

Apple Compressor quit unexpectedly error

I got this error and any clues will be appreciated. Thanks Process: Compressor [535] Path: /Applications/Compressor.app/Contents/MacOS/Compressor Identifier: ...
21
votes
6answers
672 views

Must all properties of an immutable object be final?

Must immutable objects have all properties be final? According to me not. But I don't know, whether I am right.
3
votes
1answer
49 views

How does python prevent a class from being subclassed? [duplicate]

I came across the following in the python docs: bool([x]) Convert a value to a Boolean, using the standard truth testing procedure. If x is false or omitted, this returns False; otherwise it ...
0
votes
2answers
56 views

JavaFX Events Using Local Variables

I have a method that creates an ImageView, called createImageView(), which uses EventHanlders to call vaious events. I would like to be able to use local variables in this method. What I usually do ...
1
vote
3answers
109 views

Isn't this a bad example for explaining Final in Java?

The Java spec 17.5 has the following code to illustrate the use of final Fields In The Java Memory Model. (in comparison to normal fields) class FinalFieldExample { final int x; int y; ...
4
votes
3answers
181 views

Why String is immutable or final in Java [duplicate]

As i was told this is important String Interview question in Java, which starts with discussion of " What is String ", how String is different in java than in C or C++ and then you are asked about ...
5
votes
1answer
72 views

How smart is Java about if statements with final variables

I'd like to write some troubleshooting code which i can easily remove from later non debug versions of my program. I came up with: final static boolean debug_on=true; ... if (debug_on) { ...
1
vote
1answer
35 views

Java NoSuchFieldError when using Reflection

I'm trying to modify a public static final String[] field I made in ClassA, and then modify it in ClassB using reflection. However I get a NoSuchFieldException. java.lang.NoSuchFieldException: test ...
0
votes
2answers
58 views

User preferences

I want to make a simple java program that creates a text file at somewhere. I want to let users choose the folder. But when I wrap it in jar file and send to others. Every time my friend runs it, it ...
0
votes
1answer
52 views

Error Illegal Modifier

I was using these lines of code... public static final int WIDTH = 240; public static final int HEIGHT = 350; public static final int SCALE = 2; but I always got these errors ... Illegal modifier ...
3
votes
3answers
64 views

final in java method arguments

I needed to confirm if my understanding is correct around final method arguments. If we leave aside anonymous classes from this discussion,the ONLY reason why I would tag a method argument as final is ...
6
votes
8answers
227 views

private String or public static String?

At my internship one of my colleagues gave me a hint. I want to know if this is good practice. What I was doing was creating classes that are used only for the values they contain and don't have any ...
3
votes
8answers
126 views

How final keyword works

In java we use final keyword to variables to make its values not to be changed. But i see that you can change the value in the constructor/methods of the class. Again, if the variable is static then ...
0
votes
2answers
49 views

Set the text of a toast using a position in an array that is the iteration of the loop

This code programatically generates a layout which consists of views and TextViews in a way that is defined in an array. However, I am trying to make each TextView clickable which displays a toast of ...
2
votes
3answers
75 views

Override private method

I am reading "Thinking in Java" and have a doubt. In the chapter "reusing classes", section "final and private", it says that a private method cannot be overridden. However, I tried it on the machine. ...
0
votes
1answer
158 views

Override public final method in Java (reflection?!)

I'm getting into a problem, when I was trying to create a custom LayoutAnimationController for an Android project. It has the method public final Animation getAnimationForView(View v) For my ...
0
votes
2answers
130 views

Android, change fonts on a final text view

I want to change the font on a text view But the tv is modified at the pression of a button, and i define "final" the tv, and the app crashed... what i can do it? Typeface tf = ...
2
votes
4answers
75 views

Need clarification on final StringBuffer object

In general if a variable is declared final, we cant override the value of that variable but this doesn't hold good when we use string buffer. Can someone let me know why? The below code works!!!!!! ...
2
votes
4answers
87 views

implementing a loop using final variables

Is there a way to implement a loop using final variables? I mean a loop that would run for a specified number of iterations when you are not allowed to change anything after initialization!
2
votes
5answers
101 views

Defining Java variables that only accept a specific range of values

Is there a built-in way to define fields/variables accepting values in a specific range? I mean a way of resolving it in compile-time. For example, defining a double variable that only takes values ...
3
votes
1answer
136 views

final and override C+11 specifiers coloration in Geany

I develop using Geany 1.22 and I am having trouble with coloration of C++11 keywords. Here is my configuration file for .cpp : filetypes.cpp # For complete documentation of this file, please see ...
0
votes
5answers
111 views

Difference between final static int and static final int? [duplicate]

Is there any difference between final static int x = 1; and static final int x=1? In other words, will the java compiler represent x in exactly same way in both the cases ? EDIT: Is there any kind of ...
-2
votes
4answers
103 views

How can Runnable modify a final local variable [closed]

I was trying to find out when my user interface is running and had the clever idea of posting a runnable to the uiThread whose only job would be to set a flag. I tried to use a volatile keyword on ...
2
votes
2answers
50 views

final keyword preceding the parameter declaration in method declaration

class hello { public static void main(String arg[]){ int[] c = { 2 }; final int[] d = { 3 }; } static void useArgs(final int a, int b, final int[] c, int[] d) { c[0]=d[0]; // ...
2
votes
4answers
75 views

Final passed as parameter [duplicate]

In the following example it works and compile by setting the parameter int i as final class Miner1 { Miner getMiner(final int i) { return new Miner() { public ...

1 2 3 4 5 11