Java Returning Objects | Java Course in Tamil | Logic First Tamil

แชร์
ฝัง
  • เผยแพร่เมื่อ 2 ม.ค. 2025

ความคิดเห็น • 16

  • @meenavinoth1293
    @meenavinoth1293 3 ปีที่แล้ว +1

    Mam tks ..pls continue Ur teaching work hats off U mam..daily i.am watching Ur videos only..

  • @JegaBright
    @JegaBright 3 ปีที่แล้ว +2

    இனிமை

  • @therocker4979
    @therocker4979 2 ปีที่แล้ว

    line 42..Bit confusing mam, U can use instead Box b2 = new Box(b1);

  • @vanakamboss586
    @vanakamboss586 3 ปีที่แล้ว +4

    Akka .Net videos podungaa

    • @LogicFirstTamil
      @LogicFirstTamil  3 ปีที่แล้ว +2

      have planned for python and then ds. adhuke romba time aagum. will add .net afterwards. u can learn from kudvenkat channel. its very good.

    • @akash8326
      @akash8326 3 ปีที่แล้ว +2

      @@LogicFirstTamil neenga TH-camr ah irunthalum, innoru channel sugest panringa ur great..

  • @ashuzakir5474
    @ashuzakir5474 2 ปีที่แล้ว

    Mam this can also be done by Copy Constructor...
    Is there any other use of this...

  • @sivaranjani993
    @sivaranjani993 ปีที่แล้ว

    mam what is covariant return type?

  • @activebgm6864
    @activebgm6864 2 ปีที่แล้ว

    Mam enaku error varudhu
    Java.lang.NoSuchMethodError nnu varudhu mam enna pandradhu nu sollu ga plzz

    • @LogicFirstTamil
      @LogicFirstTamil  2 ปีที่แล้ว

      paste ur code

    • @activebgm6864
      @activebgm6864 2 ปีที่แล้ว

      @@LogicFirstTamil package OOPS;
      class Box{
      int length;
      int breath;
      int height;
      Box(int l,int b,int h){
      length=l;
      breath=b;
      height=h;
      }
      boolean isEqual(Box b){//call by reference of object created
      if(length==b.length && breath==b.breath && height==b.height)
      return true;
      return false;
      }
      Box doublebox(){//Returning Objects
      Box temp = new Box(2*length,2*breath,2*height);
      return temp;
      /*temp.length=2*this.length;
      temp.breath=2*breath;
      temp.height=2*height;*/
      }
      }
      public class PassingRefDemo {
      static void increment(int a) {//call by value
      a++;//method created in with in main method does not work
      }
      public static void main(String[] args) {
      int a=10;
      increment(a);
      System.out.println(a);
      Box b1=new Box(5,12,13);
      System.out.println(b1.length);
      Box b2=new Box(12,12,13);
      b1.isEqual(b2);
      System.out.println(b1.isEqual(b2));
      //Box b3=b1.doubleBox();//returning object Example
      Box b3=b1.doublebox();
      System.out.println(b3.length);//returning object Example
      }
      }

    • @LogicFirstTamil
      @LogicFirstTamil  2 ปีที่แล้ว

      @@activebgm6864 which line u get err. u need to give complete details

    • @activebgm6864
      @activebgm6864 2 ปีที่แล้ว

      @@LogicFirstTamilmam andha static variable and static method andha thuniyaal adhhlayaum idha error dha varudhu

  • @arivuchelvang7570
    @arivuchelvang7570 3 ปีที่แล้ว

    Mam idhula passingRefDemo dhana class idhula epdi box class ah copy panninga...enakku error varudhae...class kulla class podalama?

    • @025-avineshj7
      @025-avineshj7 2 ปีที่แล้ว

      yes, but it should be static

  • @mohamedthoufiqm8108
    @mohamedthoufiqm8108 2 ปีที่แล้ว

    ❤️