Search:

Type: Posts; User: payalBansal

Search: Search took 0.09 seconds.

  1. Replies
    2
    Views
    902

    Re: Serializable interface

    Writing an object of base class should do the needful..
  2. Replies
    4
    Views
    1,192

    Re: thread java

    class A{
    public static synchronized void main(String args[]){
    Thread t= new Thread();
    t.start();
    System.out.println("hi");
    t.wait(1000);
    System.out.println("hello");
    }}
  3. Replies
    4
    Views
    1,192

    thread java

    Class A{
    Public static synchronized void main(String args[]){
    Thread t= new thread();
    t.start();
    Sysout("hi");
    t.wait(1000);
    Sysout("hello");
    }}
  4. Replies
    2
    Views
    1,067

    Why is HttpServlet serialized

    Why is HttpServlet serializable? Do we need to serialize the controllers in our web-application? Pros of it?
Results 1 to 4 of 4