设计一个MyInteger类

  1. 实验题目
    设计一个MyInteger类,这个类包括:
    一个名为value的int类型字段,存储这个对象表示的整数值:
    一个为指定的int值创建MyInteger对象的构造方法;
    一个返回int值的get方法;
    如果当前值分别是偶数/奇数/素数,那么isEven()/isOdd()/isPrime()方法返回true;
    如果指定值分别是偶数/奇数/素数,那么isEven(int)/isOdd(int)/isPrime(int)方法返回true;
    如果当前值分别是偶数/奇数/素数,那么
    isEven(MyIntege)/isOdd(MyIntege)/isPrime(MyIntege)方法返回true;
    如果该对象的值与指定的值相等,那么equals(int)和equals(MyInteger)方法返回return。
    静态方法parseInt(char[])将数字字符构成的数组转换为一个int值。
    静态方法parseInt(String)将一个字符串转换为一个int值。
    画出该类的UML图。实现这个类。编写客户测试这个类中的所有方法。
    2.代码
package myinteger; /** * * @author shinan */ public class MyInteger {/** * @param args the command line arguments */ int value; public MyInteger(int value){ this.value=https://www.it610.com/article/value; } public int getValue(){ return value; } public boolean isEven(){ if(value%2==0) return true; else return false; } public boolean isOdd(){ if(value%2!=0) return true; else return false; } public boolean isPrime(){ for(int x=2; x

3.程序运行截图
【设计一个MyInteger类】设计一个MyInteger类
文章图片

4.UML图
设计一个MyInteger类
文章图片

    推荐阅读