Search:

Type: Posts; User: kadammanali987

Search: Search took 0.08 seconds.

  1. Replies
    2
    Views
    2,336

    What is a daemon thread in Java?

    Can answer me what daemon threads are in Java?
  2. Replies
    7
    Views
    10,558

    Re: Benefits of Eclipse?

    Eclipse has a lot of advantages:

    Free and Open Source
    Most used Java IDE
    Can be used to develop applications in other languages such as C++, Ruby, HTML5, PHP, etc
    Rich Client Platform...
  3. Replies
    9
    Views
    4,063

    Re: swing or javafx or ?

    Java FX has new features and is more promoted. Things like Properties concept, support for CSS and modern touch devices, animations etc.

    Oracle has made JavaFX different than swing only...
  4. Replies
    7
    Views
    2,786

    Re: Mutithreading Framework?

    The Java Executor Framework has been introduced in Java 1.5 and it is a part of java concurrency package. The Executor framework is an abstraction layer over the actual implementation of java...
  5. Re: What is Method Overloading And Overriding In Java?

    Method Overloading in Java refers to having more than one method with same name but with different types and different number of parameters.

    When we require to perform the same functionality and...
  6. View Post

    Because multiple inheritance makes resolving access to data at compile time much more complex.

    Traditional compilers transform access to static variable (by name) to access to data at given...
  7. Re: Why Java is better for web development ?

    What makes JAVA better for web development?

    Java and C both are object oriented programming languages, C was developed for application programming whereas java was developed for network...
  8. Re: Difference between interface and abstract class?

    abstract keyword is used to create an abstract class and it can be used with methods also whereas interface keyword is used to create interface and it can’t be used with methods.

    Sub-classes use...
Results 1 to 8 of 11