how can we implement methods in multiples classes if we add methods in interfaceHow 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?

Can a planet have a different gravitational pull depending on its location in orbit around its sun?

What is the command to reset a PC without deleting any files

What do you call something that goes against the spirit of the law, but is legal when interpreting the law to the letter?

How to create a consistant feel for character names in a fantasy setting?

Why airport relocation isn't done gradually?

How would photo IDs work for shapeshifters?

Is Fable (1996) connected in any way to the Fable franchise from Lionhead Studios?

Copycat chess is back

How can I fix this gap between bookcases I made?

Check if two datetimes are between two others

When blogging recipes, how can I support both readers who want the narrative/journey and ones who want the printer-friendly recipe?

Is repealing the EU Withdrawal Act a precondition of revoking Article 50?

What is the meaning of "of trouble" in the following sentence?

Denied boarding due to overcrowding, Sparpreis ticket. What are my rights?

Why did the Germans forbid the possession of pet pigeons in Rostov-on-Don in 1941?

What does "enim et" mean?

Some basic questions on halt and move in Turing machines

Pristine Bit Checking

How many letters suffice to construct words with no repetition?

Why is making salt water prohibited on Shabbat?

What are the advantages and disadvantages of running one shots compared to campaigns?

Is there a familial term for apples and pears?

Why is the design of haulage companies so “special”?

Does it makes sense to buy a cycle to learn riding?



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


How 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;








5















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
    8 hours ago






  • 4





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

    – Lutz Horn
    7 hours ago











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

    – Patrick
    7 hours ago











  • Probably, you need an abstract class?

    – dehasi
    7 hours ago











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

    – John Wu
    3 hours ago

















5















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
    8 hours ago






  • 4





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

    – Lutz Horn
    7 hours ago











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

    – Patrick
    7 hours ago











  • Probably, you need an abstract class?

    – dehasi
    7 hours ago











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

    – John Wu
    3 hours ago













5












5








5








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 8 hours ago









rohanrohan

342




342












  • 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
    8 hours ago






  • 4





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

    – Lutz Horn
    7 hours ago











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

    – Patrick
    7 hours ago











  • Probably, you need an abstract class?

    – dehasi
    7 hours ago











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

    – John Wu
    3 hours ago

















  • 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
    8 hours ago






  • 4





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

    – Lutz Horn
    7 hours ago











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

    – Patrick
    7 hours ago











  • Probably, you need an abstract class?

    – dehasi
    7 hours ago











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

    – John Wu
    3 hours ago
















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
8 hours ago





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
8 hours ago




4




4





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

– Lutz Horn
7 hours ago





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

– Lutz Horn
7 hours ago













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

– Patrick
7 hours ago





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

– Patrick
7 hours ago













Probably, you need an abstract class?

– dehasi
7 hours ago





Probably, you need an abstract class?

– dehasi
7 hours ago













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

– John Wu
3 hours ago





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

– John Wu
3 hours ago












1 Answer
1






active

oldest

votes


















13














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

























    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

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    13














    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





























      13














      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



























        13












        13








        13







        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 7 hours ago

























        answered 7 hours ago









        Marko PacakMarko Pacak

        2,4891529




        2,4891529





























            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

            How to create a command for the “strange m” symbol in latex? Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)How do you make your own symbol when Detexify fails?Writing bold small caps with mathpazo packageplus-minus symbol with parenthesis around the minus signGreek character in Beamer document titleHow to create dashed right arrow over symbol?Currency symbol: Turkish LiraDouble prec as a single symbol?Plus Sign Too Big; How to Call adfbullet?Is there a TeX macro for three-legged pi?How do I get my integral-like symbol to align like the integral?How to selectively substitute a letter with another symbol representing the same letterHow do I generate a less than symbol and vertical bar that are the same height?

            The Calvary Singular or Plural The 2019 Stack Overflow Developer Survey Results Are InAre collective nouns always plural, or are certain ones singular?Is “audience” singular or plural?“Wasn't” vs. “weren't” in a vernacular sentence“My last couple of years” — singular or plural?Is 'rest' singular or plural?Is “all but one” singular or plural?Whether to use the singular or plural form of basis?Singular and Plural for numbersIs there a plural form of teeth?performance: plural vs singular?singular or plural nouns?Singular and Plural

            Category:Tremithousa Media in category "Tremithousa"Navigation menuUpload media34° 49′ 02.7″ N, 32° 26′ 37.32″ EOpenStreetMapGoogle EarthProximityramaReasonatorScholiaStatisticsWikiShootMe