JSP: Exemple d’utilisation de interface

Author:
       

    
        Créer une Interface en JSP
    

    
        

Creating a Java Interface

        <%!             javax.servlet.jsp.JspWriter localOut;             interface Printem              {                 void printText() throws java.io.IOException;             }             class a implements Printem             {                 public void printText() throws java.io.IOException                 {                     localOut.println("Hello from JSP!");                 }             }         %>              <%             localOut = out;                  a printer = new a();             printer.printText();         %>                         

A Voir sur le même Sujet:

  • http://java.mesexemples.com/

Leave a Reply

Your email address will not be published. Required fields are marked *