What is non static block in java

Answer Posted / avneet singh bhatia

Any method which is not the part of main function or not be
declared with any static keyword is non static block in java

For example:

class Abc
{
void show()//non static method
{
System.out.println("non static block");
}
static
{
S.O.P("static");
}
}

Is This Answer Correct ?    8 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the advantages of exception handling?

542


How do you generate random numbers in java?

497


public class Test { public static void main(String[] args) { int countA = 0; int countB = 0; int countC = 0; int countD = 0; int countE = 0; int countF = 0; int countG = 0; int countH = 0; int countI = 0; int countJ = 0; int countK = 0; int countL = 0; int countM = 0; int countN = 0; int countO = 0; int countP = 0; int countQ = 0; int countR = 0; int countS = 0; int countT = 0; int countU = 0; int countV = 0; int countW = 0; int countX = 0; int countY = 0; int countZ = 0; } } Can anybody tell me any alternate solution(like loop or something) to automate this initialization process. Ex:- for(char chr='A';chr<='Z'; chr++) { (int) String "count"+chr = 0; }

1839


How do you pass by reference?

523


What is the difference between multitasking and multithreading in Java

703






What exactly is java?

496


How many JVMs can run on a single machine and what is the Just-In-Time(JIT) compiler?

560


Why convert an applet to an application?

599


What does java se mean?

579


How do you use substring in java?

525


Is null or empty java?

517


Which browsers work with java?

546


Can private members of a base class are inheritable justify?

468


what happens when a thread cannot acquire a lock on an object? : Java thread

528


Difference between stack and queue?

575