如何在Java类中实现操作符

如何在Java类中实现操作符

本文介绍了如何在Java类中实现操作符的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试创建一个无符号整数类。

I am attempting to create a unsigned integer class.

public class UnsignedInteger extends Number implements Comparable<UnsignedInteger>
    {
    ...
    }

有没有办法实施运营商如; +, - ,*,/,<<,>>,|,^,>>>,<<

Is there a way to implement operators such as; +, -, *, /, <<, >>, |, ^, >>>, <<

推荐答案

类,了解如何定义方法支持各种业务。如果有兴趣,您甚至可以浏览源代码,您可以在 jdk 主目录的 src 文件夹中找到它。

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.

这篇关于如何在Java类中实现操作符的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-24 23:11