Wednesday 14 February 2018

What Is The Difference Between Object And Reference In Java || Learn Jav...


Only 3.9% of viewers are subscribing to my channel 😓.
I request you to please give click on Subscribe button.
It really helps me grow 😢.




Source Code

--------------------------------

class Student

{
int roll;
String name;
String course;
Student(){}
Student(int roll, String name, String course)
{
this.roll=roll;
this.name=name;
this.course=course;
}
void display()
{
System.out.println("Name : "+name+" Roll : "+roll+" Course : "+course);
}
}
public class OvsR
{
public static void main(String args[])
{
Student ss = new Student();
ss.display();
Student ss1 = new Student(3,"Akram","MCA"); // ss1 holds the base address
ss1.display();
new Student(); // orphan reference
}
}
--------------------------

Description
--------------
What Is The Difference Between Object And Reference In Java.
Difference between object & object reference in java.
The video looks at what an object is and how to create one in Java.  It defines the terms memory reference,instantiation, class and object.It also looks at the syntax for creating an object.

Saturday 10 February 2018

[Java] Restrictions For Declaration Of Class In Java || Learn Java 2018


Only 3.9% of viewers are subscribing to my channel 😓.
I request you to please give click on Subscribe button.
It really helps me grow 😢.



Restrictions For Declaration Of Class In Java

In this video I will explain restrictions for declaration of class in java.
please watch till the end without skipping
and please subscribe our channel


keywords
-------------
java class modifier, java access modifier, java public protected, java public modifier, java private class, java public class, java access specifiers, java modifiers, java modifiers and access specifiers, java protected class, java nested class, java inner class, java static class, java non static class, java nested static class, java basics, java tutorial, java instance variables, java class variables, variables in java, java access modifier tutorial, java inner class tutorial, java variables declaration
[Java] Restrictions For Declaration Of Class In Java || Learn Java 2018

JAVA is a truly object oriented programming language. You can't even write main function without class. Hence, it is necessary to learn to declare a class in JAVA. In this video Mr. Vineet Agrawal will show you how to declare a class in JAVA.

After watching this video you will be able to-
- Declare a class in JAVA
- Choose correct name for the class in JAVA
- Explain the structure of a class
- Define class properties
- Define class methods
In this tutorial, we will discuss about classes and objects in object oriented programming language Java. We will learn the syntax of class declaration and dive deep into access modifiers in Java. 

As the name suggests access modifiers in Java helps to restrict the scope of a class, constructor , variable , method or data member. 

There are four types of access modifiers available in java:

Default – No keyword required
Private
Protected
Public

A private member is only accessible within the same class as it is declared.

A member with no access modifier is only accessible within classes in the same package.

A protected member is accessible within all classes in the same package and within subclasses in other packages.

A public member is accessible to all classes (unless it resides in a module that does not export the package it is declared in).

We will also discuss nested class in this tutorial
A nested class is a member of its enclosing class. Non-static nested classes (inner classes) have access to other members of the enclosing class, even if they are declared private. Static nested classes do not have access to other members of the enclosing class.

Thursday 8 February 2018

How To Set Class Path Of Java In Windows 7/8/8.1/10 || Start Java Progra...


Only 3.9% of viewers are subscribing to my channel 😓.
I request you to please give click on Subscribe button.
It really helps me grow 😢.



Set class path of java.

In this video I will show full tutorial of how to set class path of java in winows 7,8,8.1,10 etc.
You should watch this till last.
JDK - C:\Program Files\Java\jdk1.8.0_121\bin;.
Notepad - C:\Windows;C:\Windows\System32;.

KeyWords
----------------------------
how to set class path of java,, set java classpath, java class path, java, java path, classpath java, setting java path, classpath, java path setting, how to set class path of java, java path setting in windows 2018, set java classpath, java class path, java path, java, classpath java, setting java path, java path setting, how to set class path of java
How To Set Class Path Of Java In Windows 7/8/8.1/10 || Start Java Programming

Saturday 3 February 2018

[Java] Class Method VS Object Method || How To Call Methods Explained [H...


Only 3.9% of viewers are subscribing to my channel 😓.
I request you to please give click on Subscribe button.
It really helps me grow 😢.



Object method vs class method is a very conceptual thing in Java, every programmer must know the difference between object method vs class method and how to call object method and how to call class method.

Get Source code here - 

Please Subscribe our channel - https://www.youtube.com/channel/UCRYz16fQBYSxmPZSbrOTZcA

Subscribe Technical Vlog Hindi - https://www.youtube.com/channel/UCwk6EbOPejr2kXclsmtwOQg



Source Code
------------------

class Demo
{
void call1()
{
System.out.println("We are inside Object Method");
}
static void call2()
{
System.out.println("We are inside Class Method");
}
}
public class Test
{
public static void main(String args[])
{
Demo dd= new Demo();
dd.call1(); //Object method
Demo.call2();//class method
}
}


--------------------

KeyWords
------------------------------
object method vs class method, object method vs class method java, difference between object method and class method, tutorial, cource, oop, property, java programming, java (programming language), method, class, learn,object method,class method,learn java,java hindi tutorial,knowledge 360,java program with source code,explained