RUVIDEO
Поделитесь видео 🙏

#61 Nested Class In Java | Inner Class, | Static, Non-Static, Local, Anonymous Nested class In Jav

┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉
For Online Live Training Contact me directly on :-
◈ What's App/Call/telegram- 9310683500.
┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉

┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉
Donation (Support Stream through) :-
◈ Paytm/Gpay/PhonePe - 9310683500.
┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉┉

static Nested class:-
It has the fallowing feature:-
1.It is treated as a static data member as a class.
2.it can have both static and non static members.
3.It can access only static member of its inclosing(outer) class.
4.The object of this class can be created without creating its inclosing class object.
5.It can be inherite Independently.
6.It can also Inherite an other calss.
7.It can also implements an interface.
Note:-since it is treated as a static data member of a class so qualifies all those keyword that can be applied on a data member.
Syntex to crate the object:-
OuterclassName.nestedclassName referenceofNestedclass=new
outerclassName.nestedclassName(args if any)
NonStaticNested class:-
1.It is treted as a non-static data member of a class.

2.It can have only non-static member.

3.It can access all the members(static as well as non-static) of its inclosing class.

4.The object of this class always created with the help of its inclosing class object.

5.It can inherite other class.
Syntex to create the object of Non-static class:-
OuterClassName refofOuter=new OuterClassName(args if any);
OuterClassName.InnerClassName refofInner=ref of Outer.new InnerClassName(args if any);
Note:-In case of non-static nested class compiler make the fallowing changes int the source code.

class Outer
{
class Inner
{}
}
public static void main(String aa[])
{
Outer o=new Outer();
Outer.Inner in=o.new Inner();
}
}

During compilation:-

class Outer$Inner extends java.lang.Object
{
final Outer this$0;

Outer$Inner(Outer o)
{
this$0=0;
}

}

Stay tuned with me for more upcoming Videos,
don't forget to subscribe my YouTube Channel and share your valuable comments in Comment section down below, i'll be happy t o help you all, your Surya ☺

Connect on Socials:-

Facebook:- https://www.facebook.com/AndroJavaTec...
Twitter:- https://twitter.com/AndroJavaTech4U
Google Plus:- https://plus.google.com/u/0/+AndroJav...
LinkedIn:- https://www.linkedin.com/in/androjava...

#NestedClass #InnerClass #Static_Non-Static_Local_AnonymousNestedclass

java Basic Java Tutorial for beginners
Basic Java Programming for beginners

Что делает видео по-настоящему запоминающимся? Наверное, та самая атмосфера, которая заставляет забыть о времени. Когда вы заходите на RUVIDEO, чтобы посмотреть онлайн «#61 Nested Class In Java | Inner Class, | Static, Non-Static, Local, Anonymous Nested class In Jav», вы рассчитываете на нечто большее, чем просто загрузку плеера. И мы это понимаем. Контент такого уровня заслуживает того, чтобы его смотрели в HD 1080, без дрожания картинки и бесконечного буферизации.

Честно говоря, Rutube сегодня — это кладезь уникальных находок, которые часто теряются в общем шуме. Мы же вытаскиваем на поверхность самое интересное. Будь то динамичный экшн, глубокий разбор темы от любимого автора или просто уютное видео для настроения — всё это доступно здесь бесплатно и без лишних формальностей. Никаких «заполните анкету, чтобы продолжить». Только вы, ваш экран и качественный поток.

Если вас зацепило это видео, не забудьте взглянуть на похожие материалы в блоке справа. Мы откалибровали наши алгоритмы так, чтобы они подбирали контент не просто «по тегам», а по настроению и смыслу. Ведь в конечном итоге, онлайн-кинотеатр — это не склад файлов, а место, где каждый вечер можно найти свою историю. Приятного вам отдыха на RUVIDEO!

Видео взято из открытых источников Rutube. Если вы правообладатель, обратитесь к первоисточнику.