Skip to content

Commit 643d0e9

Browse files
committed
first commit for java
0 parents  commit 643d0e9

File tree

134 files changed

+3604
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

134 files changed

+3604
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.class

Array/CommandLine.java

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
public class CommandLine {
2+
public static void main(String[] args) {
3+
for(int i=0;i<args.length;i++)
4+
{
5+
System.out.println(args[i]);
6+
}
7+
8+
}
9+
}
10+
//space act as delemiter in cmd line argument
11+
//Run by "java CommandLine 1 2 3 4"
12+
//I command line argument itself contain space then we should enclose in double quote
13+
//Run by java CommandLine 1 "hrishi bhagat"

Array/InstanceVariable.java

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
public class InstanceVariable {
2+
3+
boolean b;
4+
public static void main(String[] args) {
5+
InstanceVariable obj=new InstanceVariable();
6+
//instance variable initalized with default value by jvm
7+
//for accessing instane variable from static area we required Object reference
8+
//but from non static area we can access direclty
9+
System.out.println(obj.b);
10+
11+
}
12+
}

Array/LocalVaraible.java

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
public class LocalVaraible {
2+
public static void main(String[] args) {
3+
int a;
4+
int b;
5+
//if you declare local variable and not using the this is fine and no error
6+
//Error in below statement
7+
System.out.println(b);//you declare local variable and you are using it
8+
9+
//Only applicable modifier for local variable is final
10+
//if you are using any other then you get error
11+
12+
strictfp a=0;//error
13+
}
14+
}

Array/MainMethod.java

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
class Parent
2+
{
3+
// cheking of main method done by JVM and not by compiler
4+
// we can change "order of modifier" for main method observe below
5+
6+
strictfp static final public synchronized void main(String... hrishi)// instead of args we can use any valid identifier
7+
{
8+
// we can add "final,synchronize,strictfp" modifier to main method
9+
System.out.println("\n\nI am string main\n\n");
10+
}
11+
12+
// Overloading of main possible but JVM call String argument main method
13+
public static void main(int[] args) {
14+
System.out.println("I am int main method");
15+
}
16+
}
17+
18+
public class MainMethod extends Parent
19+
{
20+
//Inheritance concept applicable for main method
21+
//if child class does not contain main method then parent class main method executed
22+
//this is child class which not contain main method in such cases parent class main method is executed
23+
}

Array/MainMethod2.java

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
class IAmParent
2+
{
3+
public static void main(String[] args) {
4+
System.out.println("Parent main method");
5+
}
6+
}
7+
//So This seems overriding concept applicable for main method but this is
8+
//"method hiding " and not overriding
9+
//compile and run by "java IamParent" and "java MainMethod2"
10+
public class MainMethod2 {
11+
public static void main(String[] args) {
12+
System.out.println("Child main method");
13+
}
14+
}

Array/StaticVariable.java

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
public class StaticVariable {
2+
static String s;
3+
public static void main(String[] args) {
4+
5+
//initialize by default value
6+
//all variable share same copy of static variable
7+
System.out.println(s);
8+
}
9+
}

Array/Var_arg.java

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
class Var_arg
2+
{
3+
//This introduced in "1.5" version
4+
public static void m1(int ... x)
5+
{
6+
int sum=0;
7+
for(int i:x)
8+
{
9+
sum+=i;
10+
}
11+
System.out.println("Sum of elements: "+sum);
12+
System.out.println("I am var_arg");
13+
}
14+
15+
/**
16+
In general var-arg method will get least priority that is if no other method
17+
matched then only var-arg method will get the chance this is exactly same as
18+
default case inside a switch.
19+
*/
20+
//Original no arg is prefere with var-arg method
21+
public static void m1()
22+
{
23+
System.out.println("I am original no argument");
24+
}
25+
26+
//we can mix general parameter with var-arg parameter but var-arg in this case should presnt at rightmost side
27+
//this is error public static void general_and_var_arg(float ... f , String s)
28+
public static void general_and_var_arg(String s,float ... f)
29+
{
30+
System.out.println("general_and_var_arg");
31+
}
32+
//As internally var-arg method are implemented as 1D Array
33+
// public static void m1(int [] a)//this is error
34+
// {
35+
36+
// }
37+
38+
//As var-arg method is internlly uses 1d array then we can declare main method as below
39+
public static void main(String ... args)//use of var-arg
40+
{
41+
m1(90);//with 1 arg
42+
System.out.println("_______________________\n");
43+
m1();//with no arg
44+
System.out.println("_______________________\n");
45+
m1(3,4,4,5,5,6,6);//with 7 arg
46+
System.out.println("_______________________\n");
47+
48+
general_and_var_arg("Hrishi");
49+
}
50+
}

Array/Var_arg2.java

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
public class Var_arg2 {
2+
3+
//we can call this method by passing group of elements
4+
static void m1(int ... x)
5+
{
6+
System.out.println("I am m1");
7+
}
8+
//we can call this method by passing group of "1D" Arrays
9+
static void m2(int[] ...x)
10+
{
11+
System.out.println("I am m2");
12+
}
13+
14+
public static void main(String[] args) {
15+
16+
m1(2,3,4,5,6);
17+
18+
int []arr1={1,2,4,5,6,7};
19+
int []arr2={3,4,5,6,7,8,2};
20+
m2(arr1,arr2);//passing arrays to function
21+
}
22+
}

Array/anonymus.java

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
class anonymus
2+
{
3+
4+
public static int sum(int[] x)
5+
{
6+
int total=0;
7+
for(int x1:x)
8+
{
9+
total=total+x1;
10+
}
11+
return total;
12+
}
13+
public static void main(String [] args)
14+
{
15+
//decalaration
16+
new int[]{10,20,30,40};//valid
17+
new int[][]{{10,20},{30,40}};//valid
18+
19+
20+
//At the time of anonymous array creation we can't specify the size otherwise we will get compile time error.
21+
new int[3]{10,20,30,40};//C.E:';' expected(invalid)
22+
23+
//use of anonymus array
24+
System.out.println(sum(new int[]{10,20,30,40}));//100
25+
}
26+
}

Array/array1.java

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
class array1
2+
{
3+
public static void main(String [] args)
4+
{
5+
//1:At the time of array creation compulsory we should specify the size
6+
// int [] a=new int[];//C.E:array dimension missing
7+
8+
//2:It is legal to have an array with size zero in java.
9+
int[] b=new int[0];
10+
System.out.println(b.length);//0
11+
12+
//3:If we are taking array size with -ve int value then we will get runtime exception
13+
int[] c=new int[-3];//R.E:NegativeArraySizeException
14+
15+
16+
//4:Only allowed data type for array decleration are (byte,short,char,int) and other are NOT allowed
17+
int[] d=new int['a'];//(valid)
18+
byte bite=10;
19+
int[] a2=new int[bite];//(valid)
20+
/*long used*/int[] a3=new int[10l];//C.E:possible loss of precision//(invalid)
21+
/*double used*/int[] a4=new int[10.5];//C.E:possible loss of precision//(invalid)
22+
23+
24+
25+
26+
}
27+
}

Array/array2.java

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
class array2
2+
{
3+
public static void main(String[] args)
4+
{
5+
//at time of creation each element is intitialized with default value
6+
int [] a=new int[4];
7+
boolean []b=new boolean[2];
8+
for(int tmp:a)
9+
System.out.println(tmp);
10+
System.out.println("-------------------------------------------------------");
11+
for(boolean tmp:b)
12+
System.out.println(tmp);
13+
System.out.println("-------------------------------------------------------");
14+
//Whenever we are trying to print any object reference internally toString() method
15+
float [][] f=new float[3][2];
16+
System.out.println(a);
17+
System.out.println(f);
18+
System.out.println(f[0]);
19+
System.out.println(f[0][0]);
20+
System.out.println("-------------------------------------------------------");
21+
22+
//length is final variable applicable for array which give size of array and length() method is used for String
23+
int [] x=new int[3];
24+
System.out.println("length: "+x.length);//3
25+
26+
//In multidimensional arrays length variable represents only base size but not total size. <----------------------------------------------
27+
int[][] tmp=new int[6][3];
28+
System.out.println(tmp.length);//6
29+
30+
31+
}
32+
33+
}

Array/array3.java

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
import java.util.*;
2+
class array3
3+
{
4+
public static void main(String [] args)
5+
{
6+
//for primitive array as array element any type is allowed which can be promoted to declared type
7+
//For the int type arrays the allowed array element types are byte, short, char, int
8+
//For float type arrays the allowed element types are byte, short, char, int, long, float.
9+
float [] f=new float[2];
10+
f[0]='a';
11+
f[1]=90;
12+
System.out.println(f[0]+" "+f[1]);
13+
14+
15+
//case of interface type arrays as array elements we can provide its implemented class objects.
16+
Runnable [] a=new Runnable[1];
17+
Thread t=new Thread();
18+
a[0]=t;
19+
20+
}
21+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
class java_function_can_also_contain_dollor_underscore
2+
{
3+
public static void _$m132()
4+
{
5+
System.out.println("this is funtion");
6+
}
7+
public static void main(String [] args)
8+
{
9+
_$m132();
10+
11+
}
12+
}

Collections/AllCursors.java

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
import java.util.Enumeration;
2+
import java.util.Iterator;
3+
import java.util.ListIterator;
4+
import java.util.Vector;
5+
6+
public class AllCursors {
7+
public static void main(String[] args) {
8+
Vector v=new Vector<Integer>();
9+
for(int i=0;i<10;i++)
10+
{
11+
v.add(i+1);
12+
}
13+
//for Enumeration
14+
Enumeration<Integer> e=v.elements();
15+
System.out.println("\nBy enumration");
16+
while(e.hasMoreElements())//method of enumeration
17+
{
18+
//return type of nextElement method is Object so we need to do typecasting
19+
System.out.print((Integer)e.nextElement()+ " ");//method of enumeration
20+
}
21+
22+
//for Iterator
23+
Iterator<Integer> it=v.iterator();
24+
System.out.println("\nBy Iterator");
25+
while(it.hasNext())
26+
{
27+
//return type of next function is Object so we need to typecast
28+
Integer i=(Integer)it.next();
29+
if(i%2==0)
30+
System.out.print(i+ " ");
31+
else
32+
it.remove();
33+
}
34+
35+
//by ListIterator
36+
System.out.println("\nListIterator");
37+
ListIterator lst=v.listIterator();
38+
while(lst.hasNext())//listiterator is child interface of iterator so it has hasNext method
39+
{
40+
System.out.println("Element: "+lst.next()+" "+lst.nextIndex());
41+
}
42+
43+
}
44+
}

0 commit comments

Comments
 (0)