Breaking News

Search This Blog

Showing posts sorted by date for query Java. Sort by relevance Show all posts
Showing posts sorted by date for query Java. Sort by relevance Show all posts

Sunday, December 23, 2018

7:40 AM

Java Constructors

Java Constructors


जावा में एक कंस्ट्रक्टर एक विशेष विधि है जिसका उपयोग वस्तुओं को इनिशियलाइज़ करने के लिए किया जाता है। किसी वर्ग का ऑब्जेक्ट बनाते समय कंस्ट्रक्टर को कहा जाता है। इसका उपयोग ऑब्जेक्ट विशेषताओं के लिए प्रारंभिक मान सेट करने के लिए किया जा सकता है:

In Java, a constructor is a special method that is used to initialize objects. The constructor is called when creating an object of a square. It can be used to set initial values for object attributes:



Rules for creating Java constructor

कंस्ट्रक्टर के लिए दो नियम परिभाषित हैं।

  1. कन्स्ट्रक्टर का नाम उसके क्लास के नाम के समान होना चाहिए
  2. एक कन्स्ट्रक्टर के पास कोई स्पष्ट वापसी प्रकार नहीं होना चाहिए
  3. एक जावा कंस्ट्रक्टर सार, स्थिर, अंतिम और सिंक्रनाइज़ नहीं किया जा सकता है

There are two rules defined for the constructor.
  1. Constructor name must be the same as its class name
  2. A Constructor must have no explicit return type
  3. A Java constructor cannot be abstract, static, final and synchronized

Types of Java constructors

There are two types of constructors in Java:
  1. Default constructor (no-arg constructor)
  2. Parameterized constructor

Example

Create a constructor:
// Create a MyClass classpublic class MyClass
 {
  int x;  // Create a class attribute
  // Create a class constructor for the MyClass class  public MyClass()
 {
    x = 5;  // Set the initial value for the class attribute x  }

  public static void main(String[] args)
 {
    MyClass myObj = new MyClass(); // Create an object of class MyClass (This will call the constructor)    System.out.println(myObj.x); // Print the value of x  }
}

// Outputs 5


Constructor Parameters

जावा में कंस्ट्रक्टर्स पैरामाटर्स(Parameters) भी ले सकते हैं, जिसका उपयोग विशेषताओं को इनिशियलाइज़ करने के लिए किया जाता है

Example

public class MyClass
 {
  int x;

  public MyClass(int y) 
{
    x = y;
  }

  public static void main(String[] args) 
{
    MyClass myObj = new MyClass(5);
    System.out.println(myObj.x);
  }
}

// Outputs 5


Sunday, December 16, 2018

3:40 AM

Java String using it's function - Programming Examples

Java String using it's function - Programming Examples


String is the most widely used square in Java programming. This is the reason that string programs are used in Java interviews to reach coding skills.

example:
  1. char[] ch={'j','a','v','a','t','p','o','i','n','t'};  
  2. String s=new String(ch);  
is same as:
  1. String s="javatpoint";  

Java string provides several methods for class string operation, such as comparison (), concat (), equal (), partition (), length (), replace (), compare (), intern (), substring () e.t.c.

जावा स्ट्रिंग क्लास स्ट्रिंग पर ऑपरेशन करने के लिए कई तरीके प्रदान करता है जैसे तुलना (), concat (), बराबर (), विभाजन (), लंबाई (), प्रतिस्थापित करें (), तुलना करें (), intern (), substring () आदि।




Java String Example

String Change Case

public class StringChangeCase {

public static void main(String[] args) {

String str = "Hello World";

String strLower = str.toLowerCase();
String strUpper = str.toUpperCase();

System.out.println("Original String: " + str);
System.out.println("String changed to lower case: " + strLower);
System.out.println("String changed to upper case: " + strUpper);
}
}

output

Original String: Hello World
String changed to lower case: hello world
String changed to upper case: HELLO WORLD

Java String class methods

The java.lang.String class provides many useful methods to perform operations on sequence of char values.
No.MethodDescription
1char charAt(int index)returns char value for the particular index
2int length()returns string length
3static String format(String format, Object... args)returns a formatted string.
4static String format(Locale l, String format, Object... args)returns formatted string with given locale.
5String substring(int beginIndex)returns substring for given begin index.
6String substring(int beginIndex, int endIndex)returns substring for given begin index and end index.

Sunday, November 25, 2018

6:36 AM

Classes and Objects in Java in english and hindi


Classes and Objects in Java



Classes and objects are basic concepts of oop(object-oriented programming) that revolve around real life institutions.
class और object ऑब्जेक्ट ओरिएंटेड प्रोग्रामिंग की बुनियादी अवधारणाएं हैं जो वास्तविक जीवन संस्थाओं के चारों ओर घूमती हैं।

class

A class is a user defined blueprints or prototype that makes the objects. It represents the set of properties or methods which are common to all types of one type. Generally, these components can be included in class announcements, respectively:

एक वर्ग एक उपयोगकर्ता परिभाषित ब्लूप्रिंट या प्रोटोटाइप है जिससे वस्तुओं को बनाया जाता है। यह गुणों या विधियों के सेट का प्रतिनिधित्व करता है जो एक प्रकार की सभी वस्तुओं के लिए आम हैं। आम तौर पर, कक्षा घोषणाओं में इन घटकों को क्रमशः शामिल किया जा सकता है:

  1. Modifier: A class may be public or have default access (refer to the description).
  2. Class name: The name should start with the initial letter (capitalized by the conference).
  3. Superclass (if any): The name of the class parent (superclass), if any, is expanded before the keyword. A class can only increase one parent (sub class).
  4. Interface (if any): A comma-separated list of interfaces implemented by the class, if any, before applying keywords. A class can implement multiple interfaces.
  5. Body: surrounded by braces, square squares, {}


  1. Modifiers (संशोधक): एक वर्ग सार्वजनिक हो सकती है या डिफ़ॉल्ट पहुंच हो सकती है (विवरण के लिए इसका संदर्भ लें)।
  2. कक्षा का नाम: नाम प्रारंभिक पत्र (सम्मेलन द्वारा पूंजीकृत) के साथ शुरू होना चाहिए।
  3. सुपरक्लास (यदि कोई है): कक्षा के माता-पिता (सुपरक्लास) का नाम, यदि कोई है, तो कीवर्ड से पहले विस्तारित होता है। एक वर्ग केवल एक माता-पिता को बढ़ा सकता है (उपclass)।
  4. इंटरफ़ेस (यदि कोई है): कीवर्ड लागू करने से पहले कक्षा, यदि कोई हो, द्वारा कार्यान्वित इंटरफेस की एक अल्पविराम से अलग सूची। एक वर्ग एक से अधिक इंटरफ़ेस को कार्यान्वित कर सकता है।
  5. शरीर: ब्रेसिज़ से घिरा वर्ग वर्ग, {}।

Example

public class Dog {
String breed;
int age;
String color;

void barking() {
}

void hungry() {
}

void sleeping() {
}
}
click for object 


Friday, November 16, 2018

11:46 PM

java program based on array

Java Program Based on Array

In this program, you'll learn different techniques ,to print the elements of a given array in Java.

Example 1: Print an Array using For loop

public class Array {

    public static void main(String[] args) {
        int[] array = {1, 2, 3, 4, 5};

        for (int element: array) {
            System.out.println(element);
        }
    }
}
When you run the program, the output will be:
1
2
3
4
5

Example 2: Print an Array using standard library Arrays

import java.util.Arrays;
public class Array {

    public static void main(String[] args) {
        int[] array = {1, 2, 3, 4, 5};

        System.out.println(Arrays.toString(array));
    }
}
When you run the program, the output will be:
[1, 2, 3, 4, 5]

Example 3: Print a Multi-dimenstional Array

import java.util.Arrays;
public class Array {

    public static void main(String[] args) {
        int[][] array = {{1, 2}, {3, 4}, {5, 6, 7}};

        System.out.println(Arrays.deepToString(array));
    }
}
When you run the program, the output will be:
[[1, 2], [3, 4], [5, 6, 7]]
Check out these related programs:

  1. Java Program to Check if a Given Integer is Odd or Even
  2. how to run java program in CMD
  3. For Loops in java [hindi and english both]
  4. Hello : How to Create Your First Java Program
  5. How to set Environment Variables in Java: Path and Classpath
  6. while loop in java [Hindi and English Both]
  7. Do-while Loop in java

Sunday, November 11, 2018

2:42 AM

do-while Loop in java

Do-while Loop Java


do-while loop is similar to a while loop, except that a do-while loop is guaranteed to execute at least one time.

एक do-whileलूप थोड़ी देर के लूप के समान होता है, सिवाय इसके कि एक ... जबकि लूप को कम से कम एक बार निष्पादित करने की गारंटी दी जाती है

Syntax

Following is the syntax of a do-while loop −
do {
// Statements
}while(condition);  


Example


public class Test {

public static void main(String args[]) {
int x = 10;

do {
System.out.print("value of x : " + x );
x
++;
System.out.print("\n");
}while( x < 20 );
}
}
This will produce the following result −

Output

value of x : 10
value of x : 11
value of x : 12
value of x : 13
value of x : 14
value of x : 15
value of x : 16
value of x : 17
value of x : 18
value of x : 19

Infinitive do-while Loop in Java

If you pass true in the do-while loop, it will be infinitive do-while loop

यदि आप डू-लूप लूप में सच हो जाते हैं, तो यह भयावह डू-लूप होगा

Syntax:
  1. do{  
  2. //code to be executed  
  3. }while(true);  
Example:
  1. public class DoWhileExample2 {  
  2. public static void main(String[] args) {  
  3.     do{  
  4.         System.out.println("infinitive do while loop");  
  5.     }while(true);  
  6. }  
  7. }  
Output:
infinitive do while loop
infinitive do while loop
infinitive do while loop
ctrl+c
Now, you need to press ctrl+c to exit from the program




Check out these related programs:

  1. Java Program to Check if a Given Integer is Odd or Even
  2. how to run java program in CMD
  3. For Loops in java [hindi and english both]
  4. Hello : How to Create Your First Java Program
  5. How to set Environment Variables in Java: Path and Classpath
  6. while loop in java [Hindi and English Both]

Friday, November 9, 2018

3:08 AM

while loop in java [Hindi and English Both]

while loop in java 


Last tutorial, we discussed for loop. In this tutorial, we will discuss during the loop. As discussed in previous tutorials, Loop is used repeatedly to execute the set of statements unless a specific situation is satisfied.

अंतिम ट्यूटोरियल, हमने for Loop के लिए चर्चा की। इस ट्यूटोरियल में हम लूप के दौरान चर्चा करेंगे। जैसा कि पिछले ट्यूटोरियल में चर्चा की गई है, लूप का उपयोग बार-बार कथन के सेट को निष्पादित करने के लिए किया जाता है जब तक कोई विशेष स्थिति संतुष्ट न हो जाए।

Syntax of while loop

while(condition)
{
statement
(s); //code to be executed 
}


Example:-

 class WhileExample 
{  
public static void main(String args[])
       {  
    int i=1;  
    while(i<=10)
                {  
        System.out.println(i);  
    i++;  
              }  
     }  
}  

Output:
1
2
3
4
5
6
7
8
9
10

Infinitive While Loop in Java

If you become true in the loop for a while, then it will be infinitive during the loop.
यदि आप थोड़ी देर लूप में सच हो जाते हैं, तो यह लूप के दौरान infinitive होगा।

Syntax:

while (true){
statement
(s);
}

Example:
  1. public class Whileloop{  
  2. public static void main(String args[]) {  
  3.     while(true){  
  4.         System.out.println("technicalsuryansh");  
  5.     }  
  6. }  
  7. }  

Output
technicalsuryansh
technicalsuryansh
technicalsuryansh
technicalsuryansh
technicalsuryansh
technicalsuryansh
technicalsuryansh
technicalsuryansh
technicalsuryansh
technicalsuryansh
technicalsuryansh
technicalsuryansh
Ctrl+c

Check out these related programs:

  1. Java Program to Check if a Given Integer is Odd or Even
  2. how to run java program in CMD
  3. For Loops in java [hindi and english both]
  4. Hello : How to Create Your First Java Program
  5. How to set Environment Variables in Java: Path and Classpath