About 1,110,000 results
Open links in new tab
  1. Using Objects (The Java™ Tutorials > Learning the Java ... - Oracle

    For methods that return a value, you can use the method invocation in expressions. You can assign the return value to a variable, use it to make decisions, or control a loop. This code …

  2. Remote Method Invocation in Java - GeeksforGeeks

    Jan 11, 2023 · Remote Method Invocation (RMI) is an API that allows an object to invoke a method on an object that exists in another address space, which could be on the same …

  3. Invoking Methods - Dev.java

    A Method object let you get more information on the corresponding method: its type and its modifiers, the types and names of its parameters, and enables you to invoke it on a given …

  4. Invoking methods on objects in java - Stack Overflow

    Apr 15, 2010 · To invoke a static method, you use the class and method name. Let's take a slightly modified example: private static final Random RANDOM = new Random(); private int …

  5. Programs organized as a set of modules that communicate with one another via procedure calls/method invocations. Explicit interfaces defined for each module in order to control …

  6. Methods: Communicating with Objects: Constructor Invocation

    We communicate with objects using methods. Methods are executable code within each object, for which an interface has been established. Sometimes the interface is only for the object …

  7. Java Methods - Introduction, Syntax, Types, and Examples

    Apr 5, 2025 · Calling an Instance Method (Using Objects) Instance methods are typically methods of an object and require an instance of the class to invoke. That is, we must instantiate the …

  8. Remote Method Invocation (RMI) - Learning Java [Book]

    Java’s Remote Method Invocation mechanism does just that. It lets us get a reference to an object on a remote host and use it as if it were in our own virtual machine. RMI lets us invoke …

  9. How to resolve Java method invocation issues | LabEx

    In Java, methods represent behaviors of objects and can be invoked in different ways depending on their definition and context. 1. Instance Method Invocation. Instance methods are called on …

  10. Java RMI Basics (Remote method Invocation) | by Khalil khalaf

    Dec 31, 2021 · RMI forms the basis for Java’s own remoting capabilities powering the platform’s domination on servers everywhere. This article attempts to see through all the frameworks, …

  11. Some results have been removed
Refresh