answersLogoWhite

0

Technically, they don't. Operators only compare values and/or assign new ones. In the case of operator overloading for class objects, the specifics of how a particular operator interacts with class data is defined within the class method.

User Avatar

Wiki User

9y ago

What else can I help you with?

Related Questions

What are the eight java operator?

The different types of operators in Java are:Assignment OperatorsRelational OperatorsArithmetic OperatorsLogical Operators


What is absolutely necessary for any java program?

For any Java program to run, it is absolutely necessary to have at least one class and a main method defined within that class. The main method serves as the entry point for the application, where execution begins. Additionally, the Java Development Kit (JDK) is required to compile and run the program. Lastly, a proper Java runtime environment (JRE) is needed to execute the compiled code.


Differentiate Java applet and Java servlet?

Java Applet is an application designed to transmit on internet to execute on java compatible browsers. Java Servlet is a server side program used to provide services to clients.


How-to to add to values in java core without using plus operator?

Though Java, unlike other languages, does not allow you to directly access the core, memory addresses and system variables, it does have binary operators, such as the shifters >>, <<, and the bitwise operators, |, &, ^. Using these operators, ALL calculations in the computer can be done, even your complicated trig functions. Though options are limited in Java, it does provide a simulated access to low level operations. The bitwise operators are in the link below. Look at the link below to see how the computer really does math.


What do you mean by multithread program in java?

A Program in Java that spawns multiple threads is called a multithreaded program in Java.


What are operators in the Java programming language?

Take a look at the 1st link below from Sun Microsystems (creator of Java), it will list most of the Java operators with an explanation. The 2nd link provides a more in-depth description of each type of operator.


What is java program on computers?

#!/usr/bin/perl print 'java program';


What is java virtucal mechine?

That refers to the program that runs the compiled Java program.


What is a condition in java?

In Java, a condition is an expression that evaluates to a boolean value, either true or false. Conditions are commonly used in control flow statements like if, while, and for loops to determine the execution path of the program. For example, in an if statement, the code block will execute only if the condition evaluates to true. Conditions can involve comparison operators (e.g., ==, !=, <, >) and logical operators (e.g., &&, ||, !).


What powder game doesnt need java?

Any program written for the Java technology needs Java. Any program NOT written for Java DOESN'T need it.


What is operator in java?

An operator is a symbol that does something in Java. for ex: "+" is an arithmetic operator that adds two numbers. ">" is a logical operator that checks if one number is greater than the other. There are many different types of operators in Java like Arithmetic, Logical, Relational and Assignment operators


Rewrite the BNF of Example 3.4 to add the and -- unary operators of Java?

123