how can we implement methods in multiples classes if we add methods in interface Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) The Ask Question Wizard is Live! Data science time! April 2019 and salary with experienceHow to unit test abstract classes: extend with stubs?Fastest way to determine if an integer's square root is an integerWhy can't I define a static method in a Java interface?How can I create an executable JAR with dependencies using Maven?Efficiency of Java “Double Brace Initialization”?How do servlets work? Instantiation, sessions, shared variables and multithreadingWhy can I throw null in Java?Ways to iterate over a list in JavaHow should I have explained the difference between an Interface and an Abstract class?Why is “final” not allowed in Java 8 interface methods?

Complexity of many constant time steps with occasional logarithmic steps

Direct Experience of Meditation

Estimate capacitor parameters

How to say that you spent the night with someone, you were only sleeping and nothing else?

New Order #5: where Fibonacci and Beatty meet at Wythoff

What would be Julian Assange's expected punishment, on the current English criminal law?

How are presidential pardons supposed to be used?

Was credit for the black hole image misattributed?

How do I keep my slimes from escaping their pens?

Who can trigger ship-wide alerts in Star Trek?

Antler Helmet: Can it work?

Cold is to Refrigerator as warm is to?

When communicating altitude with a '9' in it, should it be pronounced "nine hundred" or "niner hundred"?

Stars Make Stars

How can players take actions together that are impossible otherwise?

Is above average number of years spent on PhD considered a red flag in future academia or industry positions?

Can a non-EU citizen traveling with me come with me through the EU passport line?

The following signatures were invalid: EXPKEYSIG 1397BC53640DB551

How is simplicity better than precision and clarity in prose?

Strange behaviour of Check

How do you clear the ApexPages.getMessages() collection in a test?

How does modal jazz use chord progressions?

What items from the Roman-age tech-level could be used to deter all creatures from entering a small area?

If I can make up priors, why can't I make up posteriors?



how can we implement methods in multiples classes if we add methods in interface



Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)
The Ask Question Wizard is Live!
Data science time! April 2019 and salary with experienceHow to unit test abstract classes: extend with stubs?Fastest way to determine if an integer's square root is an integerWhy can't I define a static method in a Java interface?How can I create an executable JAR with dependencies using Maven?Efficiency of Java “Double Brace Initialization”?How do servlets work? Instantiation, sessions, shared variables and multithreadingWhy can I throw null in Java?Ways to iterate over a list in JavaHow should I have explained the difference between an Interface and an Abstract class?Why is “final” not allowed in Java 8 interface methods?



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








7















In an interview interviewer asked this question. In an Interface1 there are 10 methods and implementing that Interface1 there are 1000 classes. Later in Interface1 I have added 11th method. How can you implement that 11th method in all classes. later he asked how can you implement in only few classes. Because of 1000 classes you cannot just go to each class and implement, its time taking. Can you tell me how to solve.










share|improve this question






















  • for all classes: make it a default method. "only few classes", you can't. what's in an interface goes for all the implementations

    – Stultuske
    Apr 8 at 12:00






  • 4





    Use an abstract class that implements the method, let your classes extend this abstract class.

    – Lutz Horn
    Apr 8 at 12:01











  • If your classes use inheritance, you could update it in the base classes.

    – Patrick
    Apr 8 at 12:02











  • Probably, you need an abstract class?

    – dehasi
    Apr 8 at 12:30











  • Step 1. Refactor so you don't have 1,000 classes

    – John Wu
    Apr 8 at 16:29

















7















In an interview interviewer asked this question. In an Interface1 there are 10 methods and implementing that Interface1 there are 1000 classes. Later in Interface1 I have added 11th method. How can you implement that 11th method in all classes. later he asked how can you implement in only few classes. Because of 1000 classes you cannot just go to each class and implement, its time taking. Can you tell me how to solve.










share|improve this question






















  • for all classes: make it a default method. "only few classes", you can't. what's in an interface goes for all the implementations

    – Stultuske
    Apr 8 at 12:00






  • 4





    Use an abstract class that implements the method, let your classes extend this abstract class.

    – Lutz Horn
    Apr 8 at 12:01











  • If your classes use inheritance, you could update it in the base classes.

    – Patrick
    Apr 8 at 12:02











  • Probably, you need an abstract class?

    – dehasi
    Apr 8 at 12:30











  • Step 1. Refactor so you don't have 1,000 classes

    – John Wu
    Apr 8 at 16:29













7












7








7








In an interview interviewer asked this question. In an Interface1 there are 10 methods and implementing that Interface1 there are 1000 classes. Later in Interface1 I have added 11th method. How can you implement that 11th method in all classes. later he asked how can you implement in only few classes. Because of 1000 classes you cannot just go to each class and implement, its time taking. Can you tell me how to solve.










share|improve this question














In an interview interviewer asked this question. In an Interface1 there are 10 methods and implementing that Interface1 there are 1000 classes. Later in Interface1 I have added 11th method. How can you implement that 11th method in all classes. later he asked how can you implement in only few classes. Because of 1000 classes you cannot just go to each class and implement, its time taking. Can you tell me how to solve.







java






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Apr 8 at 11:58









rohanrohan

432




432












  • for all classes: make it a default method. "only few classes", you can't. what's in an interface goes for all the implementations

    – Stultuske
    Apr 8 at 12:00






  • 4





    Use an abstract class that implements the method, let your classes extend this abstract class.

    – Lutz Horn
    Apr 8 at 12:01











  • If your classes use inheritance, you could update it in the base classes.

    – Patrick
    Apr 8 at 12:02











  • Probably, you need an abstract class?

    – dehasi
    Apr 8 at 12:30











  • Step 1. Refactor so you don't have 1,000 classes

    – John Wu
    Apr 8 at 16:29

















  • for all classes: make it a default method. "only few classes", you can't. what's in an interface goes for all the implementations

    – Stultuske
    Apr 8 at 12:00






  • 4





    Use an abstract class that implements the method, let your classes extend this abstract class.

    – Lutz Horn
    Apr 8 at 12:01











  • If your classes use inheritance, you could update it in the base classes.

    – Patrick
    Apr 8 at 12:02











  • Probably, you need an abstract class?

    – dehasi
    Apr 8 at 12:30











  • Step 1. Refactor so you don't have 1,000 classes

    – John Wu
    Apr 8 at 16:29
















for all classes: make it a default method. "only few classes", you can't. what's in an interface goes for all the implementations

– Stultuske
Apr 8 at 12:00





for all classes: make it a default method. "only few classes", you can't. what's in an interface goes for all the implementations

– Stultuske
Apr 8 at 12:00




4




4





Use an abstract class that implements the method, let your classes extend this abstract class.

– Lutz Horn
Apr 8 at 12:01





Use an abstract class that implements the method, let your classes extend this abstract class.

– Lutz Horn
Apr 8 at 12:01













If your classes use inheritance, you could update it in the base classes.

– Patrick
Apr 8 at 12:02





If your classes use inheritance, you could update it in the base classes.

– Patrick
Apr 8 at 12:02













Probably, you need an abstract class?

– dehasi
Apr 8 at 12:30





Probably, you need an abstract class?

– dehasi
Apr 8 at 12:30













Step 1. Refactor so you don't have 1,000 classes

– John Wu
Apr 8 at 16:29





Step 1. Refactor so you don't have 1,000 classes

– John Wu
Apr 8 at 16:29












2 Answers
2






active

oldest

votes


















14














He was likely hinting at default methods in interfaces (available only from java 8).



E.g:



interface MyInterface 
default void method()
// do stuff...




All classes implementing the interface will inherit the method, you can yet override it in case you need specific behavior.



class MyClass implements MyInterface 

@Override
public void method()
// do stuff...





Also, you can leave the base method blank (that does nothing) and then override it in your 11 classes. Or you can have another interface (e.g: SubInterface) extend MyInterface, override the base method and have your 11 classes implement directly the SubInterface so they inherit the most specific behavior. There are countless possibilities for what you have asked (including abstract classes, as someone mentioned in the comments).






share|improve this answer
































    0














    if you have to use previous versions of Java, you could simply used abstract classes,it is one such way to implement the above scenario.






    share|improve this answer








    New contributor




    Syed Zubair Ahamed is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.




















      Your Answer






      StackExchange.ifUsing("editor", function ()
      StackExchange.using("externalEditor", function ()
      StackExchange.using("snippets", function ()
      StackExchange.snippets.init();
      );
      );
      , "code-snippets");

      StackExchange.ready(function()
      var channelOptions =
      tags: "".split(" "),
      id: "1"
      ;
      initTagRenderer("".split(" "), "".split(" "), channelOptions);

      StackExchange.using("externalEditor", function()
      // Have to fire editor after snippets, if snippets enabled
      if (StackExchange.settings.snippets.snippetsEnabled)
      StackExchange.using("snippets", function()
      createEditor();
      );

      else
      createEditor();

      );

      function createEditor()
      StackExchange.prepareEditor(
      heartbeatType: 'answer',
      autoActivateHeartbeat: false,
      convertImagesToLinks: true,
      noModals: true,
      showLowRepImageUploadWarning: true,
      reputationToPostImages: 10,
      bindNavPrevention: true,
      postfix: "",
      imageUploader:
      brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
      contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
      allowUrls: true
      ,
      onDemand: true,
      discardSelector: ".discard-answer"
      ,immediatelyShowMarkdownHelp:true
      );



      );













      draft saved

      draft discarded


















      StackExchange.ready(
      function ()
      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55572971%2fhow-can-we-implement-methods-in-multiples-classes-if-we-add-methods-in-interface%23new-answer', 'question_page');

      );

      Post as a guest















      Required, but never shown

























      2 Answers
      2






      active

      oldest

      votes








      2 Answers
      2






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      14














      He was likely hinting at default methods in interfaces (available only from java 8).



      E.g:



      interface MyInterface 
      default void method()
      // do stuff...




      All classes implementing the interface will inherit the method, you can yet override it in case you need specific behavior.



      class MyClass implements MyInterface 

      @Override
      public void method()
      // do stuff...





      Also, you can leave the base method blank (that does nothing) and then override it in your 11 classes. Or you can have another interface (e.g: SubInterface) extend MyInterface, override the base method and have your 11 classes implement directly the SubInterface so they inherit the most specific behavior. There are countless possibilities for what you have asked (including abstract classes, as someone mentioned in the comments).






      share|improve this answer





























        14














        He was likely hinting at default methods in interfaces (available only from java 8).



        E.g:



        interface MyInterface 
        default void method()
        // do stuff...




        All classes implementing the interface will inherit the method, you can yet override it in case you need specific behavior.



        class MyClass implements MyInterface 

        @Override
        public void method()
        // do stuff...





        Also, you can leave the base method blank (that does nothing) and then override it in your 11 classes. Or you can have another interface (e.g: SubInterface) extend MyInterface, override the base method and have your 11 classes implement directly the SubInterface so they inherit the most specific behavior. There are countless possibilities for what you have asked (including abstract classes, as someone mentioned in the comments).






        share|improve this answer



























          14












          14








          14







          He was likely hinting at default methods in interfaces (available only from java 8).



          E.g:



          interface MyInterface 
          default void method()
          // do stuff...




          All classes implementing the interface will inherit the method, you can yet override it in case you need specific behavior.



          class MyClass implements MyInterface 

          @Override
          public void method()
          // do stuff...





          Also, you can leave the base method blank (that does nothing) and then override it in your 11 classes. Or you can have another interface (e.g: SubInterface) extend MyInterface, override the base method and have your 11 classes implement directly the SubInterface so they inherit the most specific behavior. There are countless possibilities for what you have asked (including abstract classes, as someone mentioned in the comments).






          share|improve this answer















          He was likely hinting at default methods in interfaces (available only from java 8).



          E.g:



          interface MyInterface 
          default void method()
          // do stuff...




          All classes implementing the interface will inherit the method, you can yet override it in case you need specific behavior.



          class MyClass implements MyInterface 

          @Override
          public void method()
          // do stuff...





          Also, you can leave the base method blank (that does nothing) and then override it in your 11 classes. Or you can have another interface (e.g: SubInterface) extend MyInterface, override the base method and have your 11 classes implement directly the SubInterface so they inherit the most specific behavior. There are countless possibilities for what you have asked (including abstract classes, as someone mentioned in the comments).







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Apr 8 at 12:29

























          answered Apr 8 at 12:02









          Marko PacakMarko Pacak

          2,4991529




          2,4991529























              0














              if you have to use previous versions of Java, you could simply used abstract classes,it is one such way to implement the above scenario.






              share|improve this answer








              New contributor




              Syed Zubair Ahamed is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
              Check out our Code of Conduct.
























                0














                if you have to use previous versions of Java, you could simply used abstract classes,it is one such way to implement the above scenario.






                share|improve this answer








                New contributor




                Syed Zubair Ahamed is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                Check out our Code of Conduct.






















                  0












                  0








                  0







                  if you have to use previous versions of Java, you could simply used abstract classes,it is one such way to implement the above scenario.






                  share|improve this answer








                  New contributor




                  Syed Zubair Ahamed is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                  Check out our Code of Conduct.










                  if you have to use previous versions of Java, you could simply used abstract classes,it is one such way to implement the above scenario.







                  share|improve this answer








                  New contributor




                  Syed Zubair Ahamed is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                  Check out our Code of Conduct.









                  share|improve this answer



                  share|improve this answer






                  New contributor




                  Syed Zubair Ahamed is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                  Check out our Code of Conduct.









                  answered Apr 10 at 8:34









                  Syed Zubair AhamedSyed Zubair Ahamed

                  11




                  11




                  New contributor




                  Syed Zubair Ahamed is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                  Check out our Code of Conduct.





                  New contributor





                  Syed Zubair Ahamed is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                  Check out our Code of Conduct.






                  Syed Zubair Ahamed is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                  Check out our Code of Conduct.



























                      draft saved

                      draft discarded
















































                      Thanks for contributing an answer to Stack Overflow!


                      • Please be sure to answer the question. Provide details and share your research!

                      But avoid


                      • Asking for help, clarification, or responding to other answers.

                      • Making statements based on opinion; back them up with references or personal experience.

                      To learn more, see our tips on writing great answers.




                      draft saved


                      draft discarded














                      StackExchange.ready(
                      function ()
                      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55572971%2fhow-can-we-implement-methods-in-multiples-classes-if-we-add-methods-in-interface%23new-answer', 'question_page');

                      );

                      Post as a guest















                      Required, but never shown





















































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown

































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown







                      Popular posts from this blog

                      រឿង រ៉ូមេអូ និង ហ្ស៊ុយលីយេ សង្ខេបរឿង តួអង្គ បញ្ជីណែនាំ

                      Crop image to path created in TikZ? Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)Crop an inserted image?TikZ pictures does not appear in posterImage behind and beyond crop marks?Tikz picture as large as possible on A4 PageTransparency vs image compression dilemmaHow to crop background from image automatically?Image does not cropTikzexternal capturing crop marks when externalizing pgfplots?How to include image path that contains a dollar signCrop image with left size given

                      QGIS export composer to PDF scale the map [closed] Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?Print Composer QGIS 2.6, how to export image?QGIS 2.8.1 print composer won't export all OpenCycleMap base layer tilesSave Print/Map QGIS composer view as PNG/PDF using Python (without changing anything in visible layout)?Export QGIS Print Composer PDF with searchable text labelsQGIS Print Composer does not change from landscape to portrait orientation?How can I avoid map size and scale changes in print composer?Fuzzy PDF export in QGIS running on macSierra OSExport the legend into its 100% size using Print ComposerScale-dependent rendering in QGIS PDF output