You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<h3><li><ahref="https://github.com/AvinandanBose/JavaGeneric/blob/main/InnnerClass1.java"> 1. Nested Inner Class inside a Class- Eg(1)</li></h3>
<h3><li><ahref="https://github.com/AvinandanBose/JavaGeneric/blob/main/InnnerClass2.java"> 2. Nested Inner Class inside a Class- Eg(2)</li></h3>
<h3><li><ahref="https://github.com/AvinandanBose/JavaGeneric/blob/main/InnnerClass2.java"> 2. Nested Inner Class inside a Class- Eg(2)</li></h3>
<h3><li><ahref="https://github.com/AvinandanBose/JavaGeneric/blob/main/InnnerClass3.java"> 3. Nested Inner Class inside a Class- Eg(3)</li></h3>
<h3><li><ahref="https://github.com/AvinandanBose/JavaGeneric/blob/main/InnnerClass3a.java"> 4. Nested Inner Class inside a Class- Eg(4)</li></h3>
5869
5869
</ul>
5870
5870
5871
5871
5872
5872
</ul>
5873
5873
5874
+
<h3><li> 2) Nested Inner Class in Local Method of a Class </li></h3>
5875
+
5876
+
<ul>
5877
+
5878
+
<h3>
5879
+
5880
+
```Syntax
5881
+
5882
+
OuterClass{
5883
+
5884
+
LocalMethod(){
5885
+
5886
+
InnerNestedClass{
5887
+
5888
+
}
5889
+
5890
+
5891
+
}
5892
+
5893
+
//Creation of Inner Class Object
5894
+
InnerNestedClass innerobj = new InnerNestedClass();
5895
+
5896
+
}
5897
+
5898
+
main(){
5899
+
5900
+
//Creation of Outer Class Object
5901
+
OuterClass outerObj = new OuterClass();
5902
+
5903
+
//Calling the local Method
5904
+
outerObj.LocalMethod();
5905
+
5906
+
5907
+
}
5908
+
5909
+
```
5910
+
5911
+
</h3>
5912
+
5913
+
<h3><li><ahref="https://github.com/AvinandanBose/JavaGeneric/blob/main/InnnerClass4.java"> 1. Nested Inner Class in Local Method of a Class- Eg(1)</li></h3>
5914
+
5915
+
<h3><li> Using Generic in Method </li></h3>
5916
+
<ul>
5917
+
<h3><li><ahref="https://github.com/AvinandanBose/JavaGeneric/blob/main/InnnerClass5.java"> 2. Nested Inner Class in Local Method of a Class- Eg(2)</li></h3>
5918
+
</ul>
5919
+
5920
+
<h3><li> Using Upper Bound in Method </li></h3>
5921
+
<ul>
5922
+
<h3><li><ahref="https://github.com/AvinandanBose/JavaGeneric/blob/main/InnnerClass6.java"> 3. Nested Inner Class in Local Method of a Class- Eg(3)</li></h3>
5923
+
</ul>
5924
+
5925
+
<h3><li> Using Multiple Upper Bound in Method </li></h3>
5926
+
<ul>
5927
+
<h3><li><ahref="https://github.com/AvinandanBose/JavaGeneric/blob/main/InnnerClass7.java"> 4. Nested Inner Class in Local Method of a Class- Eg(4)</li></h3>
5928
+
</ul>
5929
+
5930
+
<h3><li> Using Lower Bound in Method </li></h3>
5931
+
<ul>
5932
+
<h3><li><ahref="https://github.com/AvinandanBose/JavaGeneric/blob/main/InnnerClass8.java"> 5. Nested Inner Class in Local Method of a Class- Eg(5)</li></h3>
0 commit comments