0% found this document useful (0 votes)
18 views1 page

Program For Static in Java

The document contains code for a Java program that demonstrates static methods and variables. The program defines two classes, a2 and a3, with static variables and methods. The main method calls the static methods from both classes to output "hello" and display the values of the static variables a and b defined in class a2.

Uploaded by

chiraghz
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
18 views1 page

Program For Static in Java

The document contains code for a Java program that demonstrates static methods and variables. The program defines two classes, a2 and a3, with static variables and methods. The main method calls the static methods from both classes to output "hello" and display the values of the static variables a and b defined in class a2.

Uploaded by

chiraghz
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

hackingzo ne s.

co m

http://hackingzo nes.co m/?p=242

Program for static in java


package javaapplicat ion; class a2 { st at ic int a=2,b=8; st at ic void call() { Syst em.out .print ln("hello !!!!!"); } } class a3 { st at ic void call1() { Syst em.out .print ln("value of a and b are = "+a2.a+" and "+a2.b); } } public class St at ic1 { public st at ic void main(St ring k[]) { a2.call(); a3.call1(); } }

Relat ed Post
SHA1 Hash generating program in java MD5 Hash generating program in java Java Program to Find Network Interf ace Java Program to f ind Your IP Address and LoopBack Address Shif t Operator Program in Java Enter your email address:

Delivered by FeedBurner

Post Footer automatically generated by Add Post Footer Plugin f or wordpress.

You might also like