what is finalmethod & final variable with example?

Answers were Sorted based on User's Feedback



what is finalmethod & final variable with example?..

Answer / aditi

Final method cannot be overridden by subclasses. This is
used to prevent unexpected behavior from a subclass
altering a method.

Example:

public class MyClass {
public final void myFinalMethod() {...}

Final Variable, it can only be assigned to once and only in
the constructor of class if variable is not a reference to
pther object.

Example:

public class Sphere {

public static final double PI = 3.141592653589793; //
this might as well be a constant
public final double radius;
public final double xpos;
public final double ypos;
public final double zpos;

Sphere(double x, double y, double z, double r) {
radius = r;
xpos = x;
ypos = y;
zpos = z;
}

Is This Answer Correct ?    10 Yes 0 No

what is finalmethod & final variable with example?..

Answer / pavan

final method or variable is nothing but once if we declare
as it is final the value of that variable cant be changed
and becomes const.
Example:
--------
final b=200;
Here the value of b is 200 thought the prog
class A
{
void final b=200;
}//A
class B extends class A
{
this.b=201;//Error becoz the variable b is declared as final
//Here this represents the current value i.e.,in
class B that is about variable final

Know coming to the method:
-------------------------
final Add();//similar as variable
Final method can be def as the method name can not be
re-used and at the same time it cant be overridden..
Example:
--------
class A{
final Add()
{
int a,b,c;//Here in this we are adding two int no.
c=a+b;
}
class B extends class A
{
final Add()
{
float a,b,c;//Here we are adding two float no.
c=a+b;
}

Is This Answer Correct ?    0 Yes 0 No

what is finalmethod & final variable with example?..

Answer / vignesh,c

in a class if a method is executed at final stage is called
a final method, and and a variable when used finally is
called a final variable.

Is This Answer Correct ?    0 Yes 1 No

what is finalmethod & final variable with example?..

Answer / vignesh,c

in a class if a method is executed at final stage is called
a final method, and and a variable when used finally is
called a final variable.

Is This Answer Correct ?    0 Yes 2 No

what is finalmethod & final variable with example?..

Answer / vignesh,c

in a class if a method is executed at final stage is called
a final method, and and a variable when used finally is
called a final variable.

Is This Answer Correct ?    0 Yes 3 No

what is finalmethod & final variable with example?..

Answer / dipesh

public final methodA(){

}
u can overirde final method & final variable can reassigned
another value & final varaiable value must be assingend at
the time of declaration

Is This Answer Correct ?    2 Yes 11 No

Post New Answer

More Core Java Interview Questions

What is the difference between static (class) method and instance method?

0 Answers  


What is java console application?

0 Answers  


Does sprintf add a null terminator?

0 Answers  


Why ArrayList class is not a synchronized class and why it is not a thread safe class? explain

1 Answers  


Can you call a method in a method?

0 Answers  






how to transactions(Bank transactions) in business process in ejb?

1 Answers   Photon,


Hi Every One I Have Small Doubt Please answer This???????????????????????????? I Want to use AbstractList class methods(java.util.AbstractList) My Program is import java.util.*; class DemoOne extends AbstractList { public static void main(String[] args) { AbstractList a=new DemoOne();//This One is Correct?? DemoOne a1=new DemoOne();//This One is Correct?? Both Are Not Working System.out.println("Hello World!"+a); System.out.println("Hello World!"+a1); } } Error IS: DemoOne.java:2: DemoOne is not abstract and does not override abstract method get(int) in java.util.AbstractList class DemoOne extends AbstractList AnyOne can Please Provide The Solution????????????????????????? Plzzzzzzz

3 Answers  


Can we use a switch statement with strings?

0 Answers  


How does multithreading take place on a computer with a single cpu?

0 Answers  


Can we have this () and super () together?

0 Answers  


What is math exp in java?

0 Answers  


Which class is the immediate superclass of the Container class?

1 Answers  


Categories