Introduction to Classes and Objects (Part 1)

Поделиться
HTML-код
  • Опубликовано: 6 июн 2020
  • Java Programming: Introduction to Classes and Objects in Java
    Topics Discussed:
    1. Object-Oriented Programming (OOP) and Objects in Java.
    2. The state of an object in Java.
    3. The behavior of an object in Java.
    4. The identity of an object in Java.
    Follow Neso Academy on Instagram: @nesoacademy (bit.ly/2XP63OE)
    Contribute: www.nesoacademy.org/donate
    Memberships: bit.ly/2U7YSPI
    Books: www.nesoacademy.org/recommende...
    Website ► www.nesoacademy.org/
    Forum ► forum.nesoacademy.org/
    Facebook ► goo.gl/Nt0PmB
    Twitter ► / nesoacademy
    Music:
    Axol x Alex Skrindo - You [NCS Release]
    #JavaByNeso #JavaProgramming #OOP #ObjectsInJava

Комментарии • 54

  • @goosgooskaciyaaraha2030
    @goosgooskaciyaaraha2030 4 года назад +6

    Very happy to see my sir on this topic
    object oriented programming
    Looking forward for the next topics

  • @fannysoderling6040
    @fannysoderling6040 4 года назад +16

    Hey!! I have my examination in java on Wednesday and I really appreciate these videos. How much do you have left that you will go through? And how many videos will you have on objects and classes?

  • @janimiyashaik1411
    @janimiyashaik1411 4 года назад +17

    Sir, please upload all videos topics as fast as you can in java. We are waiting for the next topics.

  • @lovemanga_forever
    @lovemanga_forever 4 года назад +2

    the best channel I know so far

  • @chaitanyakulkarni6416
    @chaitanyakulkarni6416 Год назад +2

    Your doing gods work sir !!! Bless you

  • @alielbermawy9256
    @alielbermawy9256 Месяц назад

    Lesgooooo my man 😂😂😂ايوا بقيييييي يا جامد اول مرا اخد بالي منك

  • @EdSmed20
    @EdSmed20 2 месяца назад

    these explanations are simply outstanding.

  • @brickman-nu6bs
    @brickman-nu6bs 3 года назад +1

    Best teaching ever

  • @MiaMonster2003
    @MiaMonster2003 2 года назад +1

    you saved me thank you sm

  • @kiranhaya9099
    @kiranhaya9099 3 года назад +2

    Hi Sir can you tell me that from where I got oop in c++ lecture for very beginner stage. As I am in 2nd semister of BS and yet not able to understand OOp because of online classes as they are not proved very helpful for me.So can you hep me bro for learning oop....As I am vey interested in programming but now I feel myself got tired from it!!

  • @frankgarcia5058
    @frankgarcia5058 7 месяцев назад

    Thank you so much for you video

  • @ariyanchowdhury1442
    @ariyanchowdhury1442 4 года назад +1

    Sir please complete the java course quickly....we are waiting😢😢

  • @himanshuarora1910
    @himanshuarora1910 Год назад +1

    can anyone tell me that in which video he has explianed "newkeyword use ?

  • @aniketsen5595
    @aniketsen5595 4 года назад +3

    Good videos

  • @peternguyen6160
    @peternguyen6160 2 года назад +7

    Understanding object and classes can get sooo overwhelming

  • @pushkarajyeolekar5852
    @pushkarajyeolekar5852 4 года назад +1

    Sir please make videos on c++

  • @suryas7797
    @suryas7797 4 года назад +2

    Plz upload discrete mathematics sir

  • @smitgol6044
    @smitgol6044 4 года назад +1

    sir please complete the discreate mathematics series

  • @karanraut4417
    @karanraut4417 3 года назад +2

    I did it this Way :
    /*Creating a menu program with the following options:
    a. Add Element
    b. Remove Element
    c. Display Elements
    d. Exit*/
    import java.util.ArrayList;
    import java.util.Scanner;
    public class JAVA_106_FOR_EACH_LOOP_EX2 {
    public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    ArrayList num = new ArrayList();
    while(true){
    displayMenu();
    int opt = sc.nextInt();
    int n = 0;
    System.out.println();
    if (opt == 1){
    System.out.print("Enter an integer to add : ");
    n = sc.nextInt();
    num.add(n);
    System.out.println(n + " is added.");
    continue;
    }
    if (opt == 2){
    System.out.print("Enter an integer to remove : ");
    n = sc.nextInt();
    if(num.contains(n)) {
    num.remove(Integer.valueOf(n));
    System.out.println(n + " is removed." );
    }else{
    System.out.println(n + " is not found");
    }
    continue;
    }
    if (opt == 3){
    if(num.size() == 0){
    System.out.println("Your Array is empty");
    }else{
    System.out.println("Your array is : " + num);
    }
    continue;
    }
    if(opt == 4){
    break;
    }
    }
    System.out.println("Program Ended....!!!");
    }
    public static void displayMenu(){
    System.out.println("
    1. Add Element " + "
    2. Remove Element" + "
    3. Display Elements" + "
    4. Exit");
    System.out.print("Enter index of your Choice : ");
    }
    }

    • @rustamali2328
      @rustamali2328 11 месяцев назад

      good this programme that was in previous video

  • @electronicswithmadhan1052
    @electronicswithmadhan1052 2 года назад +1

    Difference between classes and structures

  • @efemisaktan
    @efemisaktan 4 года назад +1

    which one book do you use ?

  • @poojahp3507
    @poojahp3507 15 дней назад

    Sir please tell which book l will refer for object oriented with java language

  • @NRAVULAPALLIVENKATAGURNADHAM
    @NRAVULAPALLIVENKATAGURNADHAM 3 года назад +1

    Sir do python and c course please

  • @theamazingtutorial.9019
    @theamazingtutorial.9019 Год назад

    What is deference between Class and Structure???

  • @devanshsolani2593
    @devanshsolani2593 3 года назад +1

    Awesome but would have been better if this video was at number 70 and around

  • @eyyo4884
    @eyyo4884 19 дней назад

    I wish I had watched this fucking video before the final, I wouldn't have had to fail.

  • @kavindawarakamura881
    @kavindawarakamura881 4 месяца назад

    can you give a pdf of this slide

  • @alterjrorbino9350
    @alterjrorbino9350 2 года назад +1

    previous episodes were lively,, this episode is dark

  • @tubaabrar9800
    @tubaabrar9800 4 месяца назад +1

    2:19

  • @alimans4513
    @alimans4513 Год назад +1

    Cypher?

  • @jayagahlot2453
    @jayagahlot2453 Месяц назад

    Please make a video in bilingual language...

  • @GauravKumar-oq2hk
    @GauravKumar-oq2hk 2 года назад +2

    Dubai or Russian ❤️

  • @2good4u38
    @2good4u38 Месяц назад

    virst of all i love u oright

  • @soumyaranjansamalkiit
    @soumyaranjansamalkiit 5 месяцев назад

    HABIBI!

  • @qaderexpert4316
    @qaderexpert4316 4 года назад +1

    First like and first comment

  • @ragav6447
    @ragav6447 2 года назад +1

    I've exam in 30 mins ..

  • @lavishdhingra5979
    @lavishdhingra5979 5 месяцев назад

    toooootlaaaaaaa

  • @gauravshinde8767
    @gauravshinde8767 3 года назад +16

    Feels like a Russian teaching in English.

    • @Subharaj51
      @Subharaj51 Год назад +4

      More like Middle eastern

    • @jadbouhamdan5218
      @jadbouhamdan5218 9 месяцев назад

      I think this is a lebanese guy

    • @I_am_FRANCO
      @I_am_FRANCO 9 месяцев назад

      @@jadbouhamdan5218chu men ay uni enta

    • @justkostya_
      @justkostya_ 8 месяцев назад +1

      It's 100% not russian

  • @dhanashreeabhyankar2933
    @dhanashreeabhyankar2933 4 года назад +1

    Hiii

  • @abhishekkumar-fe8lw
    @abhishekkumar-fe8lw Год назад

    are you from mother Russia?

  • @adorablecat2985
    @adorablecat2985 Год назад

    Complecated learn

  • @smortlogician9258
    @smortlogician9258 2 года назад +1

    Which accent is that? 🤔

  • @Bzvzlhs76
    @Bzvzlhs76 Год назад

    I think you are from Lebanon, I can tell by the accent

  • @sangeetha9402
    @sangeetha9402 5 месяцев назад +2

    Pls improve ur accent... Very confusing