Search:

Type: Posts; User: meenal

Page 1 of 2 1 2

Search: Search took 0.07 seconds.

  1. Thread: Java API

    by meenal
    Replies
    5
    Views
    9,243

    Re: Java API

    An application programming interface (API), in the context of Java, is a collection of prewritten packages, classes, and interfaces with their respective methods, fields and constructors. Similar to...
  2. Replies
    19
    Views
    6,818

    Re: Why Java is better for web development ?

    The vast majority of the appropriate responses on the this one are from around 2014, so I thought of including some new point of view. To set the setting right, it's 2017, so I'm accepting, when you...
  3. Replies
    7
    Views
    10,546

    Re: Benefits of Eclipse?

    The biggest advantages in eclipse are:
    (eclipse is constantly assisting while coding)
    Code Completion, instead of digging through documentation you should be able to tab your way through methods...
  4. View Post

    When one class extends more than one classes then this is called multiple inheritance. For example: Class C extends class A and B then this type of inheritance is known as multiple inheritance. Java...
  5. Re: what is difference between call stack and stack tace?

    Stack trace is a representation of the call stack. A stack trace is a report of the active stack frames at a certain point in time during the execution of a program. In other words, the call stack is...
  6. Thread: constructor

    by meenal
    Replies
    11
    Views
    1,230

    Re: constructor

    Data types aren’t much use unless you can do things with them. For this purpose classes have methods. Members say what a class is. Methods say what a class does. For instance our website class might...
  7. Re: Difference between interface and abstract class?

    Abstraction: Hiding the internal implementation of the feature and only showing the functionality to the users. i.e. what it works (showing), how it works (hiding). Both abstract class and interface...
  8. Replies
    7
    Views
    10,546

    Re: Benefits of Eclipse?

    Advantages of IDE:

    1. Using IDE will cost you less time and effort .

    2.Navigation is made easier.

    3.Auto completion- one of the best features , you don’t have to remember all.
    ...
  9. Re: What is Method Overloading And Overriding In Java?

    Overloading occurs when two or more methods in one class have the same method name but different parameters.


    Overriding means having two methods with the same method name and parameters (i.e.,...
  10. Re: what is difference between call stack and stack tace?

    Definition - What does Call Stack mean?
    A call stack, in C#, is the list of names of methods called at run time from the beginning of a program until the execution of the current statement.

    A...
  11. Replies
    5
    Views
    9,479

    Re: Iterating over collections in Java 8

    Anytime you have a collection of things you will need some mechanism to systematically step though the items in that collection. As an everyday example, consider the television remote control, which...
  12. Thread: Exception

    by meenal
    Replies
    5
    Views
    2,343

    Re: Exception

    Java has many built-in exception classes, such as NullPointerException and IllegalArgumentException. At times however, you might want to create your own exception class. For example, as opposed to...
  13. Thread: javascript

    by meenal
    Replies
    2
    Views
    9,279

    javascript

    What is javascript and their function??
  14. Replies
    7
    Views
    2,779

    Re: Mutithreading Framework?

    The Java platform always has a strong support for concurrent programming and multithreading. But in earlier days the support was in the form of calling native constructs itself in the application...
  15. Re: What is Method Overloading And Overriding In Java?

    There are many differences between method overloading and method overriding in java. A list of differences between method overloading and method overriding are given below:

    No.
    Method Overloading...
  16. Replies
    13
    Views
    9,908

    Re: Process and Multi-threading

    The primary difference is that threads within the same process run in a shared memory space, while processes run in separate memory spaces.
    Threads are not independent of one another like processes...
  17. Re: Dynamically changing the name of a webservice to be called

    If you are truly dynamically setting this, you should set the .Url field of instance of the proxy class you are calling.

    Setting the value in the .config file from within your program:

    Is a...
  18. Replies
    3
    Views
    17,275

    Re: What needs to programing java webservice ?

    Creating a Web Service From Java
    One way to create a web service application is to start by coding the endpoint in Java. If you are developing your Java web service from scratch or have an existing...
  19. Thread: java Tomcat

    by meenal
    Replies
    7
    Views
    2,226

    Re: java Tomcat

    Apache Tomcat is used to deploy your Java Servlets and JSPs. So in your Java project you can build your WAR (short for Web ARchive) file, and just drop it in the deploy directory in Tomcat. So...
  20. Re: Passing reference to multiple classes in java

    Java is strictly pass-by-value, it's just that the values are often references.) When you change the value within that object using theBar.foo.a , then looking at the value of a again using theFoo.a...
  21. Thread: Java and JDOM2

    by meenal
    Replies
    2
    Views
    1,117

    Re: Java and JDOM2

    Java is one of the most popular and widely used programming language and platform. A platform is an environment that helps to develop and run programs written in any programming language.
    Java is...
  22. Replies
    13
    Views
    9,908

    Re: Process and Multi-threading

    Process
    Processes are heavyweight operations
    Each process has its own memory space
    Inter-process communication is slow as processes have different memory addresses
    Context switching between...
  23. View Post

    C++ , Common lisp and few other languages supports multiple inheritance while java doesn’t support it. Java doesn’t allow multiple inheritance to avoid the ambiguity caused by it. One of the example...
  24. Replies
    3
    Views
    16,286

    Re: Java Applet Libraries Question

    Java Applet Basics
    Applet is a Java program that can be embedded into a web page. It runs inside the web browser and works at client side. Applet is embedded in a HTML page using the APPLET or...
  25. Thread: constructor

    by meenal
    Replies
    11
    Views
    1,230

    Re: constructor

    A constructor is a special method that is used to initialize a newly created object and is called just after the memory is allocated for the object. It can be used to initialize the objects to...
Results 1 to 25 of 36
Page 1 of 2 1 2