active questions tagged final - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T14:00:50Z http://stackoverflow.com/feeds/tag/final http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1866770/how-to-handle-a-static-final-field-initializer-that-throws-checked-exception 1 How to handle a static final field initializer that throws checked exception Romain Muller 2009-12-08T12:50:38Z 2009-12-08T13:20:56Z <p>Hello all,</p> <p>I am facing a use case where I would like to declare a <code>static final</code>field with an initializer statement that is declared to throw a checked exception. Typically, it'd look like this:</p> <pre>public static final ObjectName OBJECT_NAME = new ObjectName("foo:type=bar");</pre> The issue I have here is that the `ObjectName` constructor may throw various checked exceptions, which I don't care about (because I'd know my name is valid, and it's allright if it miserably crashes in case it's not). The java compiler won't let me just ignore this (as it's a checked exception), and I would prefer not to resort to: <pre> public static final ObjectName OBJECT_NAME; static{ try{ OBJECT_NAME = new ObjectName("foo:type=bar"); }catch(final Exception ex){ throw new RuntimeException("Failed to create ObjectName instance in static block.",ex); } } </pre> <p>Because static blocks are really, really difficult to read. Does anyone have a suggestion on how to handle this case in a nice, clean way?</p> http://stackoverflow.com/questions/1854284/subclassing-a-final-class-or-a-degenerate-decorator 0 Subclassing a final class; or, a Degenerate Decorator Mark Lutton 2009-12-06T03:54:29Z 2009-12-06T16:39:52Z <p>I have a number of different representations of the same kind of object; let's call it a Thing. "Thing" is a marker interface. ThingFormat0, ThingFormat1, ThingFormat2 etc. are all JavaBeans that implement Thing. (Because they are JavaBeans, a JSON marshaller automatically converts them to and from JSON automatically.) ThingFormat1 has just a few members like name and id. ThingFormat2 has URI links to other Things. In ThingFormat3 has ThingFormat1 representations of those other things etc.</p> <p>The JSON serializer knows how to convert a URI automatically. (It works for any class where you can use toString() and the constructor ClassName(String string) to convert.)</p> <p>I want to have a ThingFormat0 that behaves like a URI but implements the marker interface Thing.</p> <pre><code>public class ThingFormat0 extends URI implements Thing {} </code></pre> <p>This does not work because URI is a final class and can't be subclassed.</p> <p>The only way I can think of to do this is by making a decorator (a very degenerate sort of decorator as it doesn't add any functionality to URI). This is easy in some "duck-typed" languages but more of a pain in Java, because I have to wrap a URI and implement all the methods of URI that I need. Is there an easier way?</p> http://stackoverflow.com/questions/1183274/is-there-a-way-to-pseduo-subclass-strings-numbers-uint-ints-or-other-final 0 Is there a way to pseduo-subclass Strings, Numbers, uint, ints, or other 'final' primitives in Actionscript 3 using the Proxy class? JMHNilbog 2009-07-25T22:49:15Z 2009-12-02T20:00:05Z <p>It seems like there might be a way, but I'm not seeing it. I have, in the past, used the valueOf() and toString() methods on Object to cause custom objects to behave in numbers or strings based on context, but I'd like to do more.</p> http://stackoverflow.com/questions/1806078/java-why-does-this-method-have-side-effects 1 Java: Why does this method have side effects? Rosarch 2009-11-26T23:13:25Z 2009-11-27T16:11:40Z <p>I have a method that is producing side effects, even though certain variables are marked <code>final</code>. Why is this? Perhaps I am confused about what <code>final</code> does.</p> <pre><code>@Test public void testSubGraph() { WeightedGraph&lt;String, DefaultWeightedEdge&gt; g = generateSimpleCaseGraph(); Graph&lt;String, DefaultWeightedEdge&gt; sub = ChooseRoot.subgraphInDirection(g, "alpha", "l"); assertEquals(g, generateSimpleCaseGraph()); //fails } public static &lt;V, E extends DefaultEdge&gt; Graph&lt;V, E&gt; subgraphInDirection(final Graph&lt;V, E&gt; g, final V start, final V sink) { Graph&lt;V, E&gt; sub = removeEdges(g, start, sink); return removeUnconnectedNodes(sub, start); } private static &lt;Vertex, Edge extends DefaultEdge&gt; Graph&lt;Vertex, Edge&gt; removeEdges(final Graph&lt;Vertex, Edge&gt; g, Vertex start, Vertex sink) { final Set&lt;Edge&gt; outEdges = new HashSet&lt;Edge&gt;(g.edgesOf(start)); boolean removedEdge; for (Edge e : outEdges) { if (! (g.getEdgeTarget(e).equals(sink) || g.getEdgeSource(e).equals(sink))) { removedEdge = g.removeEdge(e); assert removedEdge; } } return g; } private static &lt;Vertex, Edge&gt; Graph&lt;Vertex, Edge&gt; removeUnconnectedNodes(Graph&lt;Vertex, Edge&gt; g, Vertex start) { ConnectivityInspector&lt;Vertex, Edge&gt; conn = new ConnectivityInspector&lt;Vertex, Edge&gt;((UndirectedGraph&lt;Vertex, Edge&gt;) g); boolean removedVertex; final Set&lt;Vertex&gt; nodes = new HashSet&lt;Vertex&gt;(g.vertexSet()); for (Vertex v : nodes) { if (! conn.pathExists(start, v)) { removedVertex = g.removeVertex(v); assert removedVertex; } } return g; } </code></pre> http://stackoverflow.com/questions/1513520/java-why-all-fields-in-an-interface-are-implicitly-static-and-final 2 Java - Why all fields in an interface are implicitly static and final? peakit 2009-10-03T11:27:38Z 2009-11-20T15:08:04Z <p>I am just trying to understand why all fields defined in an Interface are implicitly <code>static</code> and <code>final</code>. The idea of keeping fields <code>static</code> makes sense to me as you can't have objects of an interface but why they are <code>final</code> (implicitly)?</p> <p>Any one knows why Java designers went with making the fields in an interface <code>static</code> and <code>final</code>?</p> http://stackoverflow.com/questions/1749588/proper-way-to-declare-and-set-a-private-final-member-variable-from-the-constructo 1 Proper way to declare and set a private final member variable from the constructor in Java? joel_nc 2009-11-17T15:20:48Z 2009-11-17T20:20:55Z <p>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 entries by a helper class.</p> <pre><code>public class Base { private final Map&lt;String, Command&gt; availableCommands; public Base() { availableCommands = Helper.loadCommands(); } } </code></pre> <p>In the above example the helper class looks like this:</p> <pre><code>public class Helper { public static Map&lt;String, Command&gt; loadCommands() { Map&lt;String, Command&gt; commands = new HashMap&lt;String, Command&gt;(); commands.put("A", new CommandA()); commands.put("B", new CommandB()); commands.put("C", new CommandC()); return commands; } } </code></pre> <p>My thought is, that is better practice to use a method to set such a variable in the constructor. So Base class would look something like this:</p> <pre><code>public class Base { private final Map&lt;String, Command&gt; availableCommands; public Base() { this.setCommands(); } private void setCommands() { this.availableCommands = Helper.loadCommands(); } } </code></pre> <p>But now I cannot maintain the final modifier and get a compiler error (Final variable cannot be set)</p> <p>Another way to do this would be:</p> <pre><code>public class Base { private final Map&lt;String, Command&gt; availableCommands = new HashMap&lt;String, Command&gt;(); public Base() { this.setCommands(); } private void setCommands() { Helper.loadCommands(availableCommands); } } </code></pre> <p>But in this case the method in the Helper class would change to:</p> <pre><code>public static void loadCommands(Map&lt;String, Command&gt; commands) { commands.put("A", new CommandA()); commands.put("B", new CommandB()); commands.put("C", new CommandC()); } </code></pre> <p><strong>So the difference is where do I create a new map with <code>new HashMap&lt;String, Command&gt;();</code>?</strong> My main question is if there is a recommended way to do this, given that part of the functionality comes from this Helper's static method, as a way to load the actual map with entries?</p> <p><strong>Do I create the new map in my Base class or the Helper class?</strong> In both cases Helper will do the actual loading and Base's reference to the map holding the concrete commands will be private and final.</p> <p>Are there perhaps other more elegant ways to do this besides the options I am considering?</p> http://stackoverflow.com/questions/1743715/behaviour-of-final-static-method 9 Behaviour of final static method Harish 2009-11-16T17:43:04Z 2009-11-16T20:48:57Z <p>I have been playing around with modifiers with static method and came across a weird behaviour.</p> <p>As we know, static methods cannot be overridden, as they are associated with class rather than instance.</p> <p>So if I have the below snippet, it compiles fine</p> <pre><code>//Snippet 1 - Compiles fine public class A{ static void ts(){} } class B extends A{ static void ts(){ } } </code></pre> <p>But if I include final modifier to static method in class A, then compilation fails <strong>ts() in B cannot override ts() in A; overridden method is static final</strong>.</p> <p>Why is this happening when static method cannot be overridden at all?</p> http://stackoverflow.com/questions/1734377/how-can-i-assign-final-variables-of-the-base-class-within-a-derived-class-constr 0 How can I assign final variables of the base class within a derived class' constructor in Java? Eric 2009-11-14T14:31:05Z 2009-11-14T20:23:27Z <p>I have a base <code>Color</code> class that looks something like this. The class is designed to be immutable, so as a result has <code>final</code> modifiers and no setters:</p> <pre><code>public class Color { public static Color BLACK = new Color(0, 0, 0); public static Color RED = new Color(255, 0, 0); //... public static Color WHITE = new Color(255, 255, 255); protected final int _r; protected final int _g; protected final int _b; public Color(int r, int b, int g) { _r = normalize(r); _g = normalize(g); _b = normalize(b); } protected Color() { } protected int normalize(int val) { return val &amp; 0xFF; } // getters not shown for simplicity } </code></pre> <p>Derived from this class is a <code>ColorHSL</code> class that in addition to providing the <code>Color</code> class' getters, is contructed with hue, saturation, and luminosity. This is where things stop working.</p> <p>The constructor of <code>ColorHSL</code> needs to do some calculations, then set the values of <code>_r</code>, <code>_b</code>, and <code>_g</code>. But the super constructor has to be called <em>before</em> any calculations are made. So the parameterless <code>Color()</code> constructor was introduced, allowing the final <code>_r</code>, <code>_b</code>, and <code>_g</code> to be set later on. However, neither the parameterless constructor or the setting (for the first time, within the constructor of <code>ColorHSL</code>) are accepted by the Java compiler.</p> <p>Is there a way around this issue, or do I have to remove the <code>final</code> modifier from <code>_r</code>, <code>_b</code>, and <code>_g</code>?</p> <p><hr></p> <h1>Edit:</h1> <p>In the end, I went for a base abstract <code>Color</code> class, containing both RGB and HSL data. The base class:</p> <pre><code>public abstract class Color { public static Color WHITE = new ColorRGB(255, 255, 255); public static Color BLACK = new ColorRGB(0, 0, 0); public static Color RED = new ColorRGB(255, 0, 0); public static Color GREEN = new ColorRGB(0, 255, 0); public static Color BLUE = new ColorRGB(0, 0, 255); public static Color YELLOW = new ColorRGB(255, 255, 0); public static Color MAGENTA = new ColorRGB(255, 0, 255); public static Color CYAN = new ColorRGB(0, 255, 255); public static final class RGBHelper { private final int _r; private final int _g; private final int _b; public RGBHelper(int r, int g, int b) { _r = r &amp; 0xFF; _g = g &amp; 0xFF; _b = b &amp; 0xFF; } public int getR() { return _r; } public int getG() { return _g; } public int getB() { return _b; } } public final static class HSLHelper { private final double _hue; private final double _sat; private final double _lum; public HSLHelper(double hue, double sat, double lum) { //Calculations unimportant to the question - initialises the class } public double getHue() { return _hue; } public double getSat() { return _sat; } public double getLum() { return _lum; } } protected HSLHelper HSLValues = null; protected RGBHelper RGBValues = null; protected static HSLHelper RGBToHSL(RGBHelper rgb) { //Calculations unimportant to the question return new HSLHelper(hue, sat, lum); } protected static RGBHelper HSLToRGB(HSLHelper hsl) { //Calculations unimportant to the question return new RGBHelper(r,g,b) } public HSLHelper getHSL() { if(HSLValues == null) { HSLValues = RGBToHSL(RGBValues); } return HSLValues; } public RGBHelper getRGB() { if(RGBValues == null) { RGBValues = HSLToRGB(HSLValues); } return RGBValues; } } </code></pre> <p>The classes of <code>RGBColor</code> and <code>HSLColor</code> then derive from <code>Color</code>, implementing a simple constructor that initializes the <code>RGBValues</code> and <code>HSLValues</code> members. (Yes, I know that the base class if-ily contains a static instance of a derived class)</p> <pre><code>public class ColorRGB extends Color { public ColorRGB(int r, int g, int b) { RGBValues = new RGBHelper(r,g,b); } } public class ColorHSL extends Color { public ColorHSL(double hue, double sat, double lum) { HSLValues = new HSLHelper(hue,sat,lum); } } </code></pre> http://stackoverflow.com/questions/1700934/final-methods-are-inlined 1 final methods are inlined? xdevel2000 2009-11-09T13:17:43Z 2009-11-09T20:38:00Z <p>Are Java final methods automatically inlined?</p> <p>Many books says yes many books says no!!!</p> http://stackoverflow.com/questions/1693091/public-static-final-variable-in-an-imported-java-class 3 public static final variable in an imported java class Senthil Kumar 2009-11-07T13:53:17Z 2009-11-07T20:26:05Z <p>hi all,</p> <p>I happen to come across a Java code at my work place. Here's the scenario: There are 2 classes - <code>ClassA</code> and <code>ClassB</code>.</p> <p><code>ClassA</code> has nothing except 4 public static final string values inside it. Its purpose is to use those values like <code>ClassA.variable</code> (don't ask me why, it's not my code).</p> <p><code>ClassB</code> imports <code>ClassA</code>. I edited the string values in <code>ClassA</code> and compiled it. When I ran <code>ClassB</code> I could see it was using the old values - not the new values. I had to recompile <code>ClassB</code> to make it use new values from <code>ClassA</code>! (I had to recompile other classes that imports <code>ClassA</code>!)</p> <p>Is this just because of JDK 1.6 or I should have known earlier to recompile <code>ClassB</code> also! Enlighten me. :)</p> http://stackoverflow.com/questions/1672259/final-arraylist-declaration -1 final arraylist declaration sudhir 2009-11-04T07:48:36Z 2009-11-04T07:51:35Z <p>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</p> http://stackoverflow.com/questions/1663129/serialising-and-immutable-objects 3 Serialising and immutable objects The Feast 2009-11-02T19:19:53Z 2009-11-02T20:04:18Z <p>I have a class which is intended for immutable use, hence I would like to label all the fields <code>final</code>.</p> <p>However the class is serialized and deserialized to send over the network. For this to work an empty constructor is required. This prevents me creating the final fields.</p> <p>I'm sure this is a fairly common problem but I can't find a solution. How should I proceed?</p> http://stackoverflow.com/questions/1652133/what-does-final-mean-in-groovy 2 what does final mean in Groovy Don 2009-10-30T20:31:59Z 2009-10-31T07:05:24Z <p>Hi,</p> <p>If you run the following code in the Groovy console it prints "8"</p> <pre><code>class F { private final Integer val = 2 def set(v) {val = v} def print() {println val} } def f = new F() f.set(8) f.print() </code></pre> <p>In Java this code wouldn't compile because you can't assign a <code>final</code> reference after the constructor has run. I know that for properties, <code>final</code> indicates that the property can't be changed <em>outside</em> the class, but what does it mean to mark a private field <code>final</code>?</p> <p>Thanks, Don</p> http://stackoverflow.com/questions/1615163/modifying-final-fields-in-java 13 Modifying final fields in Java ChssPly76 2009-10-23T18:28:05Z 2009-10-23T22:11:28Z <p>Let's start with a simple test case:</p> <pre><code>import java.lang.reflect.Field; public class Test { private final int primitiveInt = 42; private final Integer wrappedInt = 42; private final String stringValue = "42"; public int getPrimitiveInt() { return this.primitiveInt; } public int getWrappedInt() { return this.wrappedInt; } public String getStringValue() { return this.stringValue; } public void changeField(String name, Object value) throws IllegalAccessException, NoSuchFieldException { Field field = Test.class.getDeclaredField(name); field.setAccessible(true); field.set(this, value); System.out.println("reflection: " + name + " = " + field.get(this)); } public static void main(String[] args) throws IllegalAccessException, NoSuchFieldException { Test test = new Test(); test.changeField("primitiveInt", 84); System.out.println("direct: primitiveInt = " + test.getPrimitiveInt()); test.changeField("wrappedInt", 84); System.out.println("direct: wrappedInt = " + test.getWrappedInt()); test.changeField("stringValue", "84"); System.out.println("direct: stringValue = " + test.getStringValue()); } } </code></pre> <p>Anybody care to guess what will be printed as output (shown at the bottom as to not spoil the surprise immediately).</p> <p>The questions are:</p> <ol> <li>Why do primitive and wrapped integer behave differently?</li> <li>Why does reflective vs direct access return different results?</li> <li>The one that plagues me most - why does String behave like primitive <code>int</code> and not like <code>Integer</code>?</li> </ol> <p>Results (java 1.5):</p> <pre><code>reflection: primitiveInt = 84 direct: primitiveInt = 42 reflection: wrappedInt = 84 direct: wrappedInt = 84 reflection: stringValue = 84 direct: stringValue = 42 </code></pre> http://stackoverflow.com/questions/1548825/javascript-classes-which-cannot-be-subclassed 1 JavaScript classes which cannot be subclassed corey 2009-10-10T19:14:06Z 2009-10-10T20:22:55Z <p>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:</p> <pre><code>function Car(make, model) { this.getMake = function( ) { return make; } this.getModel = function( ) { return model; } } </code></pre> http://stackoverflow.com/questions/154314/when-to-use-final 14 When to use final eaolson 2008-09-30T18:25:04Z 2009-10-10T18:45:42Z <p>I've found a couple of references (<a href="http://www.javapractices.com/topic/TopicAction.do?Id=23" rel="nofollow">for example</a>) that suggest using <code>final</code> as much as possible and I'm wondering how important that is. This is mainly in the the context of method parameters and local variables, not final methods or classes. For constants, it makes obvious sense.</p> <p>On one hand, the compiler can make some optimizations and it makes the programmer's intent clearer. On the other hand, it adds verbosity and the optimizations may be trivial.</p> <p>Is it something I should make an effort to remember to do?</p> http://stackoverflow.com/questions/1417190/should-a-static-final-logger-be-declared-in-upper-case 4 Should a "static final Logger" be declared in UPPER-CASE? fahdshariff 2009-09-13T08:24:30Z 2009-09-14T11:07:19Z <p>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 in <a href="http://pmd.sourceforge.net/" rel="nofollow">PMD</a>. </p> <p>e.g:</p> <pre><code>private static final Logger logger = Logger.getLogger(MyClass.class); </code></pre> <p>Just search <a href="http://www.google.co.uk/search?q=%22static+final+logger%22&amp;ie=utf-8&amp;oe=utf-8&amp;aq=t&amp;rls=org.mozilla%3Aen-GB%3Aofficial&amp;client=firefox-a" rel="nofollow">google</a>or <a href="http://stackoverflow.com/search?q=%22static+final+logger%22">SO</a> for "static final logger" and you will see this for yourself.</p> <p>Should we be using LOGGER instead? </p> http://stackoverflow.com/questions/1415955/private-final-static-attribute-vs-private-final-attribute 1 private final static attribute vs private final attribute okami 2009-09-12T19:49:34Z 2009-09-13T08:02:10Z <p>In java, what's de difference between:</p> <p><code>private final static int NUMBER = 10;</code></p> <p>and</p> <p><CODE>private final int NUMBER = 10;</code></p> <p>both are private and both are final, the difference is the static attribute.</p> <p>What's better to use?</p> http://stackoverflow.com/questions/1366441/final-class-in-c 4 final class in c++ learner 2009-09-02T08:27:47Z 2009-09-03T10:11:40Z <pre><code>class Temp { private: ~Temp() {} friend class Final; }; class Final : virtual public Temp { public: void fun() { cout&lt;&lt;"In base"; } }; class Derived : public Final { }; void main() { Derived obj; obj.fun(); } </code></pre> <p>The above code tries to achieve non-inheritable class (final). But using above code the object of derived can still be created, why?</p> <p>The desired functionality is achieved only if ctor made private, my question is why it is not achievable in case of dtor private?</p> http://stackoverflow.com/questions/316352/do-you-finalize-local-variables-and-method-parameters-in-java 12 Do you "final"ize local variables and method parameters in Java? Julien Chastang 2008-11-25T04:16:23Z 2009-08-30T08:24:06Z <p>In Java, you can qualify local variables and method parameters with the final keyword.</p> <pre><code>public static void foo(final int x) { final String qwerty = "bar"; } </code></pre> <p>Doing so results in not being able to reassign x and qwerty in the body of the method.</p> <p>This practice nudges your code in the direction of immutability which is generally considered a plus. But, it also tends to clutter up code with "final" showing up everywhere. What is your opinion of the final keyword for local variables and method parameters in Java?</p> http://stackoverflow.com/questions/306862/does-using-final-for-variables-in-java-improve-garbage-collection 9 Does using final for variables in Java improve garbage collection? Goran Martinic 2008-11-20T21:08:55Z 2009-08-30T08:16:29Z <p>Today my colleagues and me have a discussion about the usage of the <code>final</code> keyword in Java to improve the garbage collection.</p> <p>For example, if you write a method like:</p> <pre><code>public Double doCalc(final Double value) { final Double maxWeight = 1000.0; final Double totalWeight = maxWeight * value; return totalWeight; } </code></pre> <p>Declaring the variables in the method <code>final</code> would help the garbage collection to clean up the memory from the unused variables in the method after the method exits.</p> <p>Is this true? </p> http://stackoverflow.com/questions/1351568/java-basics-about-final-keyword 0 java basics about final keyword Abhishek Sanghvi 2009-08-29T14:29:02Z 2009-08-29T15:17:15Z <p>Can final keyword be used for a method? </p> http://stackoverflow.com/questions/1299398/abstract-class-java-basics 1 Abstract class - Java basics keyur 2009-08-19T11:43:07Z 2009-08-24T21:35:06Z <p>Can an abstract class have a final method in Java?</p> http://stackoverflow.com/questions/1310009/java-possible-to-have-mutual-final-class-references 3 Java: Possible to have mutual, final class references? ZenBlender 2009-08-21T03:56:33Z 2009-08-21T06:24:00Z <p>Let's say I have two classes, named A and B, that are associated with each other such that it is most convenient if each class's object contains a reference to the other. In other words, class A has a variable "b" of class B. Class B has a variable "a" of class A. This way, the code in each class has easy access to the other class.</p> <p>Is there any way to set up this association to be "final"? i.e. variable b in class A is final and variable a in class B is final? It seems that setting up these references in a constructor (as would be required by the final keyword) requires an illogical circular sort of reference.</p> <p>This is more of a conceptual question than a practical one. Thanks!</p> http://stackoverflow.com/questions/1299837/cannot-refer-to-a-non-final-variable-inside-an-inner-class-defined-in-a-different 2 Cannot refer to a non-final variable inside an inner class defined in a different method Ankur 2009-08-19T13:12:38Z 2009-08-19T13:55:00Z <p>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 to final as that will prevent me from updating the values however I am getting the error I describe in the initial question below:</p> <p>I had previously written what is below:</p> <blockquote> <p>I am getting the error "cannot refer to a non-final variable inside an inner class defined in a different method".</p> <p>This is happening for the double called price and the Price called priceObject. Do you know why I get this problem. I do not understand why I need to have a final declaration. Also if you can see what it is I am trying to do, what do I have to do to get around this problem.</p> </blockquote> <pre><code>public static void main(String args[]){ int period = 2000; int delay = 2000; double lastPrice = 0; Price priceObject = new Price(); double price = 0; Timer timer = new Timer(); timer.scheduleAtFixedRate(new TimerTask() { public void run() { price = priceObject.getNextPrice(lastPrice); System.out.println(); lastPrice = price; } }, delay, period); } </code></pre> http://stackoverflow.com/questions/1249917/final-variable-manipulation-in-java 1 Final variable manipulation in Java Dusk 2009-08-08T21:14:12Z 2009-08-08T21:39:46Z <p>Hi,</p> <p>Could anyone please tell me what is the meaning of the following line in context of Java:</p> <blockquote> <p>final variable can still be manipulated unless it's immutable</p> </blockquote> <p>As far as I know, by declaring any variable as final, you can't change it again, then what they mean with the word <strong>immutable</strong> in above line?</p> http://stackoverflow.com/questions/1247119/c-is-there-a-way-to-forbid-subclassing-of-my-class 5 C++: Is there a way to forbid subclassing of my class? Jeremy Friesner 2009-08-07T21:32:32Z 2009-08-08T10:45:52Z <p>Hi all,</p> <p>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.</p> <p>What I want to do now is make it so that no other classes can subclass Derived. In Java I can accomplish that by declaring the Derived class "final". Is there some C++ trick that can give me the same effect?</p> <p>(Ideally I'd like to make it so that no class other than Derived can subclass Base as well. I can't just put all the code into the same class or use the friend keyword, since Base and Derived are both templated, with Base having fewer template arguments than Derived does....)</p> <p>Thanks, Jeremy</p> http://stackoverflow.com/questions/1198237/whats-the-php-equivalent-of-a-final-variable-in-c 1 What's the PHP equivalent of a final variable in C? Roly 2009-07-29T05:48:55Z 2009-07-29T06:49:10Z <p>I'm wondering if PHP has a type of variable in classes that functions like final in C. And by that I mean all objects of the same class use the same variable and when it's updated on one it's updated on every one. Static is close because it is shared throughout all objects but I need to be able to update it. Will I have to use globals for this?</p> http://stackoverflow.com/questions/1195561/how-do-i-enforce-assigning-to-arguments-of-methods-using-findbugs 2 How do I enforce assigning to arguments of methods using FindBugs? Allain Lalonde 2009-07-28T17:34:08Z 2009-07-28T18:04:53Z <p>As an alternative to littering my code with thousands of final keywords in front of my parameters, I'm trying to enforce it using FindBugs.</p> <p>It doesn't seem possible to do this, but there should be a way, shouldn't there?</p> <p>Thanks</p> http://stackoverflow.com/questions/1181753/what-is-the-c-equivalent-of-public-final-static-in-java 1 what is the c# equivalent of public final static in java peter.murray.rust 2009-07-25T09:41:01Z 2009-07-25T09:46:25Z <p>In Java I can write: </p> <pre><code>public final static MyClass foo = new MyClass("foo"); </code></pre> <p>is there an equivalent in C#?</p>