“Java Program Operations по классам и объектам” Ответ

Java Program Operations по классам и объектам

class Bicycle {

  // field of class
  int gear = 5;

  // method of class
  void braking() {
    ...
  }
}

// create object
Bicycle sportsBicycle = new Bicycle();

// access field and method
sportsBicycle.gear;
sportsBicycle.braking();
SAMER SAEID

Java Operations на занятиях

Java does not support Operator Overloading.
The only option you have is define methods like
add(), subtract(), multiply(), etc, and write the logic there,
and invoke them for particular operation.

You can have a look at BigInteger class to get an idea of how you can 
define methods to support various operations. And if interested,
you can even go through the source code, that you can find in the src folder
of your jdk home directory.
Charles Game Dev

Ответы похожие на “Java Program Operations по классам и объектам”

Вопросы похожие на “Java Program Operations по классам и объектам”

Больше похожих ответов на “Java Program Operations по классам и объектам” по Java

Смотреть популярные ответы по языку

Смотреть другие языки программирования