Static And Final Variable / Field - Functional Difference?

Sep 15, 2014

I'm not really sure I understand the functional difference between a static and final variable/field. Oracle defines Class Variable as:

Class Variables (Static Fields) A class variable is any field declared with the static modifier; this tells the compiler that there is exactly one copy of this variable in existence, regardless of how many times the class has been instantiated. A field defining the number of gears for a particular kind of bicycle could be marked as static since conceptually the same number of gears will apply to all instances. The code static int numGears = 6; would create such a static field. Additionally, the keyword final could be added to indicate that the number of gears will never change.

If static will have the same value regardless of how many times it's used, then why use final (or vice versa)?

View Replies


ADVERTISEMENT

How To Take Runtime Value For Static Final Variable

Jul 28, 2014

How can i take run time value for static final variable...my lecturer said first time assignment is possible for declared final variable but in my case it shows compile time error..I'm placing my program below with error message

class Sample
{
static final String cname;
void print() {
System.out.println(cname);
}
public static void main(String args[])
{
cname=args[0];
Sample s=new Sample();
s.print();
}
}

Sample.java:11: cannot assign a value to final variable cname.
cname=args[0];

View Replies View Related

Final Field Initialization With Exceptions

May 11, 2014

consider:
 
class A {
     final Object b;
     public A(C c) {
          try {
               b = c.someMethodThatMayThrowSomeException();
          } catch (SomeException e) {
               b = null; // This line results in compiler error: "variable b might already have been assigned"
          }
     } // take away b=null line and you get "variable b might not have been initialized" on this line
}
 
Why? How could 'b' be assigned if the exception was thrown?
 
Btw, the workaround is to wrap the method call:
 
private final Object initB() {
     try {
          return c.someMethodThatMayThrowSomeException();
     } catch (SomeException e) {
          return null;
     }
}
 
and use b = initB(); in the constructor.  But that seems like it should be unnecessary.

View Replies View Related

Final And Static Method?

Feb 7, 2014

My teacher has asked me one question that "What is difference between the final method and static method".

View Replies View Related

Final Static Variables In GregorianCalendar

Oct 27, 2014

why using the get method(c.get(c.HOUR_OF_DAY)); gives me the correct hour(currently 19) but directly accesing c.HOUR_OF_DAY returns 11 ? It shows In the documentation that HOUR_OF_DAY is public.

import java.util.*;
public class calendar2 {
public static void main(String[] args) {
new calendar2().timer();
}
private void timer() {
Calendar c=Calendar.getInstance();
//c.clear();
System.out.println(c.get(c.HOUR_OF_DAY));
System.out.println(c.HOUR_OF_DAY);

}
}

View Replies View Related

Difference In Variable Assignment Between Constructor And Variable Section

May 21, 2014

Given the case I have an object which is assigned only once. What is the difference in doing:

public class MyClass {
private MyObj obj = new MyObj("Hello world");

private MyClass(){}
//...
}

and

public class MyClass {
private MyObj obj;
private MyClass(){
obj = new MyObj("Hello world");
}
//...
}

Is there a difference in performance or usability? (Given also the case there are no static calls expected) ....

View Replies View Related

Non-static Variable Cannot Be Referenced From Static Context - Error

Mar 15, 2015

I am trying to call an actionListener which is shown below in my PSVM :

class testMenuItemListener implements ActionListener {
public void actionPerformed(ActionEvent arg0) {
getContentPane().removeAll();
createPanel();
getContentPane().add(panel1); //Adding to content pane, not to Frame
repaint();
printAll(getGraphics()); //Extort print all content

[Code] .....

I get the following error :

Frame.java:409: error: non-static variable this cannot be referenced from a static context
menuItem1.addActionListener(new testMenuItemListener());

View Replies View Related

Non-static Variable Special Cannot Be Referenced From A Static Context

Mar 3, 2015

I am trying to add a field (called special) to a hibernate table. I am copying existing code (related to the NAME field) so I don't have to figure this out from scratch. I am getting the error

"[ERROR] C:VOXvoxware-1.1.13voxwarevoxware-implsrcmainjavacomvoxwareimplflowVoxFlowConfiguration.java:[213,38] error: non-static variable special cannot be referenced from a static context".

Line 213 is in public void mergeFrom, the actual line is "special = VoxFlowConfiguration.special;" I don't understand why Java thinks special is a "non-static" variable but it doesn't have a problem with the other variables (such as name, orderShow)

package com.voxware.impl.flow;
import com.voxware.asset.LiabilityType;
import com.voxware.flow.FlowConfiguration;
import com.voxware.flow.OrderFlow;
import com.voxware.flow.Step;
import com.voxware.i18n.LanguageCodes;
import com.voxware.impl.i18n.UTF8Control;
import com.voxware.impl.persistence.BaseEntity;
import com.voxware.impl.portal.VoxPortal;

[code]....

View Replies View Related

Non-static Variable This Cannot Be Referenced From A Static Context - Error

Mar 14, 2015

I am trying to call an actionListener which is shown below in my PSVM :

class testMenuItemListener implements ActionListener
{
public void actionPerformed(ActionEvent arg0) {
getContentPane().removeAll();
createPanel();
getContentPane().add(panel1); //Adding to content pane, not to Frame
repaint();

[Code] .....

I get the following error :

Frame.java:409: error: non-static variable this cannot be referenced from a static context
menuItem1.addActionListener(new testMenuItemListener());

View Replies View Related

Non-Static Variable TAShaReport Cannot Referenced From Static

Sep 28, 2014

The error said : Non Static Variable TAShaReport Cannot referenced from a static context

I just want to put the output in the TextArea

Here is the code :

public static String DeduplicateFiles(String myFolderLocation) {
try {
HashSet<String> newset = new HashSet<>();
File folder = new File(myFolderLocation); //Directory where the files are located
File[] listOfFiles = folder.listFiles();

[Code] .....

View Replies View Related

Using Variable From Static Extended Class In Non-Static

Nov 18, 2014

This is a someway special question, because I am using jmonkeyEngine.

But the topic is simple:

I have 2 classes:

public class Spielbrett extends SimpleApplication {
public static void main(String[] args) {
Spielbrett app = new Spielbrett();
app.start();
}
@Override
public void simpleInitApp() {

[Code]...

as the main class and a second class for the chips:

public class Spielstein {
public Spatial stone;
public int player;
public int team;
private AssetManager assetManager = Spielstein.getAM(); //THIS IS THE PROBLEM
public Spielstein(int t_player, int t_team){

[Code]...

My problem is: I can't access getAM() from the first in the second class. If you know why I would be glad for an answer.

View Replies View Related

Which Will Be Loaded First Static Variable Or Static Block

Jan 26, 2014

One of my friend asked me that which will load first static variable or static block ? My answer was to static variable.. So he gave me two program and said to differentiate between them

1st program

public class Test {
public static void main(String args[])
{
System.out.println(Test.x);
}
static {
System.out.println(Test.x);

[Code] ....

Output of this :

90
90

I tried to decompile the byte code and found it's same for both the above equation. How to differentiate between them. I am confused when the static variable will initialised.

View Replies View Related

Creating Enums Without Using Enum Class And Private Static Final Keywords?

Jun 11, 2014

I am wondering if there is a way in jave to use enums WITHIN a class (without creating a separate enum class) without using private static final. Something like as folows:

class My Class {
myEnum {ACTIVE, INACTIVE, PENDING};
}

is there something like this available?

View Replies View Related

When Final Variable Occupy Memory

Sep 23, 2014

when final variable occupy memory in java?

View Replies View Related

Singleton Pattern - Static Field And Public Constructor

Apr 4, 2014

In singleton pattern just having a static field is not enough? Do we really need to have a private constructor?

I can have a static field and have a public constructor and still say it is singleton.

View Replies View Related

Static Class Should Have Static Variable?

Sep 23, 2014

I wrote a code to use static class. But, when I call the class in a outer class but, it gives an error. Is it mandatory to have a static class should have static variables when we declaring them??

public class StaticClassMain {
static class Sub{
String str="Example 1";
}
public static void main(String[] args) {
System.out.println(Sub.str);
}
}

View Replies View Related

Swing/AWT/SWT :: Non-final Variable Inside Inner Class Defined In Different Method

Aug 9, 2014

this code won't compile because selected row must be declared as final because of it being defined outside the window listener. Is their anyway around this? If I make it final the first time that the variable is called it keeps it starting value until the GUI is closed.

butEdit.addActionListener (new ActionListener () {
@Override
public void actionPerformed (java.awt.event.ActionEvent evt) {
int selectedRow = table.getSelectedRow ();
final String [] values = custTableModel.getRowValues (selectedRow);

[code]....

View Replies View Related

Cannot Refer To Non-final Variable Inside Inner Class Defined In Different Method

Apr 3, 2014

Created a java.sql.connection object. Refering those obj inside public void run() { } If i declare as final inside a method, i can't refer those outside method due to scope. Cannot refer to a non-final variable dbConnObj inside an inner class defined in a different method...

View Replies View Related

Methods Cannot Be Resolved To A Variable Or Is Not A Field

Feb 7, 2015

I've been using Eclipse and I realized that it compiles stuff into class files for you. So, I created a new project and each class is a separate .java file, with the .class files already there, but I cannot get rid of these errors. Or, say if I wrote them all into one file and then realized it needs to be 3 separate, or that all need to be in the same src file (oops)? Here are the errors:

Exception in thread "main" java.lang.Error: Unresolved compilation problems:
random cannot be resolved or is not a field
guessp1 cannot be resolved to a variable
guessp1 cannot be resolved to a variable
guessp2 cannot be resolved to a variable
guessp2 cannot be resolved to a variable
guessp3 cannot be resolved to a variable
guessp3 cannot be resolved to a variable
guessp1 cannot be resolved to a variable
guessp2 cannot be resolved to a variable
guessp3 cannot be resolved to a variable

[code]....

View Replies View Related

Difference Between Instance And Class Variable

Mar 25, 2014

I'm having trouble to fully understand the difference between instance and class variables.

I though it was all about the static, i.e:

int age; // instance variable
static int age; // class variable

What's behind this?

View Replies View Related

Static Variable Within A Class?

Dec 8, 2014

I have a class Tree in which all the methods to build a tree are in place. But however I would want variable of by Tree which is pointing to the last node being added to the tree.

So basically every time you keep adding a node to the tree you tail pointer gets updated to point to the last node. I have this so far.

public class NonEmptyTree implements Tree {
private Tree left;
private int data;
private int leftleafCount;
private int rightleafCount;
private Tree right;
private Tree tail; // This variable must be shared by all the object. There needs to just one tail pointer to the tree.
public Tree insert( data ) {
tail = // gets updated every time when new node gets added.

View Replies View Related

Non-Static Variable Cannot Be Referenced?

Feb 24, 2014

I am getting a syntax error saying I cannot reference a non static variable from a static perspective.

How this is happening is with my variables declared in the beggining. When outputting those variables in my last statement, I am not allowed to.

The source is below.

View Replies View Related

Find The Functional Interface

May 20, 2014

I've been looking through the functional interfaces for something like this (It's part of a REPL):

public interface ActionInterface {
void call();
}

I want to use it like this:

public void setQuitAction(ActionInterface action) {
quitAction = action;
}

// and somewhere else:

evaluator.setQuitAction(() -> isLooping = false);

I feel like there should be something like ActionInterface included with all those functional interfaces. All I can come up with is Runnable, which makes you think of threads not lambdas. What's the way to do this in Java?

Spoiler

What I'm doing is extracting the Eval part of the REPL so I can write test doubles for it. However, the Eval part needs to be able to tell the main loop to stop. I suspect this will be the target of further refactoring. Passing a lambda might not be the ideal solution but it's better than Eval knowing about the REPL class. Now I can mock out the Eval part when testing the REPL and I can even mock out the quit action when testing Eval.

View Replies View Related

Sandwich Class Static Variable

Apr 14, 2015

Sandwich class. I have thus far completed creating a sandwich class with a seperate sandwich Tester class to run with it. (this is according to the assignment). Now I must create Static variables for the sandwich class:

Add two static variables to the Sandwich class to count how many sandwiches are sold and how many slices of tomato are used. Initialize each to 0.Where do you add code to increment the sandwich counter? Determine this and then add code.

public class Sandwich
{
static int numOfSold = 0;
static int slicesUsed = 0;
private String meat;
private int numOfSlicesOfTomato;
private boolean lettuce;

[code]....

View Replies View Related

Difference Between Explicit In Class Initialization And Non Static Instance Initialization

Dec 20, 2014

I come from a C++ background and I recently started learning Java from "Thinking in Java" 4th Edition by Bruce Eckel.What's the difference between:

// explicit in class initialization
// saw this on page 126

class A {

}

public class B {
A obj1 = new A();
A obj2 = new A();
}

and

// non static instance initialization
// saw this on page 132

class A {
}
public class B {
A obj1;
A obj2;
{
obj1 = new A();
obj2 = new A();
}
}

View Replies View Related

Java - How To Make Static Variable Name To Be Dynamic

Apr 16, 2015

Suppose I have a class child

public class child{
public static int age = 1;
}

And I am using class child static variable age in class school

public class school{
int var_age;
public school(){ //school constructor
var_age = child.age;
}
}

Value in age of child class could be any of these below depending on some logic:

public static int age = 1;
public static int age = 2;

How could i achieve this where should i apply that logic? Also it is mandatory for class school code to remain same.

View Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved