Abstract Class and Abstract Method in PHP (Hindi)

Поділитися
Вставка
  • Опубліковано 18 вер 2024
  • Abstract Class and Abstract Method in PHP
    Core PHP Tutorials: • Core PHP (Hindi)
    HTML Tutorials : goo.gl/O254f9
    CSS Tutorials: goo.gl/1QNdiB
    SQL Tutorials: goo.gl/U4TcEX
    Check Out Our Other Playlists:
    / geekyshow1
    SUBSCRIBE to Learn Programming Language !
    goo.gl/glkZMr
    Learn more about subject:
    www.geekyshows....
    ________________________________________________
    If you found this video valuable, give it a like.
    If you know someone who needs to see it, share it.
    If you have questions ask below in comment section.
    Add it to a playlist if you want to watch it later.
    ________________________________________________
    T A L K W I T H M E !
    Business Email: contact@geekyshows.com
    UA-cam Channel: / geekyshow1
    Facebook: / geekyshow
    Twitter: / geekyshow1
    Google Plus: plus.google.co...
    Website: www.geekyshows....
    _______________________________________________
    Make sure you LIKE, SUBSCRIBE, COMMENT, and REQUEST A VIDEO! :)
    _______________________________________________

КОМЕНТАРІ • 29

  • @anshuchaudhary912
    @anshuchaudhary912 5 років тому +1

    Thanks Sir.
    Learned About Abstract Very Easily....
    Thank You :)

  • @jayantaghosh6640
    @jayantaghosh6640 3 роки тому +1

    Thank you sir.

  • @EXPERIMENTSHOW.
    @EXPERIMENTSHOW. 7 місяців тому

    thank u soo much bro😍
    god bless you ❤

  • @muhammadnaveed7953
    @muhammadnaveed7953 2 роки тому

    Excellent job sir g.. Thank you...

  • @avisheksaha5321
    @avisheksaha5321 4 роки тому

    Good explanation sir. 🌻

  • @meghshyamvaishnav2508
    @meghshyamvaishnav2508 Рік тому

    thanks

  • @shamimu81
    @shamimu81 4 роки тому

    awesome explain

  • @jigneshraval6880
    @jigneshraval6880 3 роки тому

    Nice

  • @sandeepchandrawanshi2260
    @sandeepchandrawanshi2260 4 роки тому

    Thankyou sir, keep it up

  • @soniyacnair1737
    @soniyacnair1737 5 років тому

    Please include the topic of trigger and joins in php

  • @vaibhavdhiman1083
    @vaibhavdhiman1083 5 років тому

    Sir plz reply me sir apka 6th point hum constructor ko bhi abstract or static function ko bhi abstract bna skte hai or unki defi. Child class mai kr skte hai . Ans me .

  • @jashanpreet832
    @jashanpreet832 3 роки тому

    Super

  • @khurshed780
    @khurshed780 3 роки тому +1

    Where should we use abstract class and interface class
    Can anyone plz explain with example?

  • @paisawalaa
    @paisawalaa 5 років тому +1

    What is the output of the following code?
    abstract class Calc {
    abstract public function calculate($param);
    protected function getConst() { return 4; }
    }
    class FixedCalc extends Calc {
    public function calculate($param) {
    return $this->getConst() + $param;
    }
    }
    $obj = new FixedCalc();
    echo $obj->calculate(38);. Plz suggest ans

    • @ghostbaby21
      @ghostbaby21 5 років тому

      bahi contract operator used hai object ko display kar raha hai
      abstract class Calc {
      abstract public function calculate($param);
      protected function getConst() { return 4; }
      }
      class FixedCalc extends Calc {
      public function calculate($param) {
      return $this->getConst() + $param;
      }
      }
      $obj = new FixedCalc();
      echo $obj->calculate(38);

  • @Sharmajiexe
    @Sharmajiexe 3 роки тому

    Bhai Trait bhi add kar do playlist ma

  • @YogeshKumar-og4ls
    @YogeshKumar-og4ls 2 роки тому

    It's updated now.... I think an abstract class should contain at least one abstract method.

  • @50techcompany15
    @50techcompany15 5 років тому

    sir hm abstract ko as a multiple inheritence use kr skty hain kya?

    • @amitparik76
      @amitparik76 3 роки тому +1

      Usi concept ke liye interface bajaya gaya hai.

  • @CodingEscort
    @CodingEscort Рік тому

    Theme extension kon c use ki hai app ny is ma

    • @geekyshows
      @geekyshows  Рік тому

      ua-cam.com/users/shortsv1c7jbBQl3s

  • @mlbbhyper7619
    @mlbbhyper7619 4 роки тому

    Real life project example?

  • @UK00009
    @UK00009 5 років тому

    sir PHP me method overloading possible hai???? if yes , then how????

    • @geekyshows
      @geekyshows  5 років тому

      No, but PHP provides hack via magic function __call( ) can be used to achieve similar functionality but its not pure Method overloading.

    • @UK00009
      @UK00009 5 років тому

      Sir I am fresher in PHP koi job hi nahi de raha as a fresher??? kya kare?

    • @geekyshows
      @geekyshows  5 років тому +2

      @@UK00009 shuru me struggle to karna hi parta hai dhundhte rahiye starup company me apply kijiye udhar mil jayegi sath hi project bana kar rakhiye jise interview me dikha sake

  • @lifeeasygadgets5050
    @lifeeasygadgets5050 5 років тому

    Buddy apko smjhnaa nh arha abstract class kia ha meaning kia ha or na hmain smjh arha ha

  • @anilpal268
    @anilpal268 5 років тому

    u have not explain abstract class and abstract method