找到关于面向对象编程的9301篇文章

在Java中将一个BigInteger乘以另一个BigInteger

Samual Sam
更新于2020年6月29日 05:26:40

400 次浏览

BigInteger类用于超出基本数据类型限制的大整数计算。它提供用于模运算、GCD计算、素性测试、素数生成、位操作以及其他一些杂项操作。要将一个BigInteger乘以另一个BigInteger,请使用BigInteger multiply()方法。首先,让我们创建一些对象−BigInteger one, two, three; one = new BigInteger("2"); two = new BigInteger("8");将上述结果相乘并将其赋值给第三个对象−three = one.multiply(two);以下是一个示例−示例 在线演示import java.math.*; public class BigIntegerDemo {    public static void main(String[] args) {       BigInteger one, ... 阅读更多

在Java中使用BigInteger值

karthikeya Boyini
更新于2020年6月29日 05:27:19

155 次浏览

java.math.BigInteger类提供类似于所有Java基本整数运算符以及java.lang.Math中所有相关方法的操作。BigInteger类用于超出基本数据类型限制的大整数计算。它提供用于模运算、GCD计算、素性测试、素数生成、位操作以及其他一些杂项操作。以下是一个显示如何使用BigInteger值的示例。示例 在线演示import java.math.BigInteger; public class BigIntegerDemo {    public static void main(String[] args) {       BigInteger bi1, bi2, bi3;       // 为bi1, bi2赋值   ... 阅读更多

在Java中从字节数组创建BigInteger

Samual Sam
更新于2020年6月29日 05:28:41

2K+ 次浏览

BigInteger类提供用于模运算、GCD计算、素性测试、素数生成、位操作以及其他一些杂项操作。假设以下为我们的字节数组−byte[] arr = new byte[] { 0x1, 0x00, 0x00 };我们现在将它们转换为BigInteger −BigInteger bInteger = new BigInteger(arr);以下是一个在Java中从字节数组创建BigInteger的示例。示例 在线演示import java.math.BigInteger; public class Demo {    public static void main(String[] argv) throws Exception {       byte[] arr = new byte[] { 0x1, 0x00, 0x00 };       BigInteger bInteger = new BigInteger(arr);       System.out.println(bInteger);    } }输出65536

在Java中通过long类型变量创建BigInteger

karthikeya Boyini
更新于2020年6月29日 05:29:11

461 次浏览

BigInteger类用于超出基本数据类型限制的大整数计算。它提供用于模运算、GCD计算、素性测试、素数生成、位操作以及其他一些杂项操作。首先,设置一个long值−Long l = 198L;现在,创建一个BigInteger的新对象并传递上述值−BigInteger bInteger = new BigInteger(l);以下是一个示例−示例 在线演示import java.math.BigInteger; public class Demo {    public static void main(String[] argv) throws Exception {       Long l = 198L;       BigInteger bInteger = BigInteger.valueOf(l);       System.out.println(bInteger);    } }输出198

在Java中通过字符串创建BigInteger

Samual Sam
更新于2020年6月29日 05:12:13

117 次浏览

BigInteger类用于超出基本数据类型限制的大整数计算。它提供用于模运算、GCD计算、素性测试、素数生成、位操作以及其他一些杂项操作。首先,设置一个字符串−String str = "268787878787687";现在,创建一个BigInteger的新对象并传递上述字符串−BigInteger bInteger = new BigInteger(str);以下是一个示例−示例 在线演示import java.math.BigInteger; public class Demo {    public static void main(String[] argv) throws Exception {       String str = "268787878787687";       BigInteger bInteger = new BigInteger(str);       System.out.println(bInteger);    } }输出268787878787687

在Java中实现枚举的switch语句

karthikeya Boyini
更新于2020年6月29日 05:15:19

179 次浏览

Java中的枚举包含一组固定的常量。它们可以有字段、构造函数和方法。它增强了Java中的类型安全。以下是一个在Java中对枚举实现Switch语句的示例−示例 在线演示public class Demo {    public static void main(String[] args) {       Laptop l = Laptop.Inspiron;       switch(l){          case Inspiron:          System.out.println("家用和办公用笔记本电脑!");             break;          case XPS:           System.out.println("带来终极体验的笔记本电脑!");             break;          case Alienware:           System.out.println("高性能游戏笔记本电脑");             break;       }    } } enum Laptop {       Inspiron, XPS, Alienware; }输出家用和办公用笔记本电脑!

Java程序使用==运算符比较枚举

Samual Sam
更新于2020年6月29日 05:16:12

112 次浏览

我们可以在Java中使用==运算符比较枚举。假设我们有以下枚举。enum Devices {    LAPTOP, MOBILE, TABLET; }这里有一些对象,我们也为它们赋值了−Devices d1, d2, d3; d1 = Devices.LAPTOP; d2 = Devices.LAPTOP; d3 = Devices.TABLET;现在让我们看一个使用==运算符进行比较的示例−示例 在线演示public class Demo {    enum Devices {       LAPTOP, MOBILE, TABLET;    }    public static void main(String[] args) {       Devices d1, d2, d3;       d1 = Devices.LAPTOP; ... 阅读更多

比较Java中的枚举值

karthikeya Boyini
更新于2020年6月29日 05:17:11

192 次浏览

要比较枚举值,请使用equals()方法。我们的Devices枚举有一些已赋值的对象。Devices d1, d2, d3; d1 = Devices.LAPTOP; d2 = Devices.LAPTOP; d3 = Devices.TABLET;让我们比较它们−if(d3.equals(Devices.TABLET)) System.out.println("设备相同。"); else System.out.println("设备不同。");以下是一个示例−示例 在线演示public class Demo {    enum Devices {       LAPTOP, MOBILE, TABLET;    }    public static void main(String[] args) {       Devices d1, d2, d3;       d1 = Devices.LAPTOP;       d2 = Devices.LAPTOP;       d3 = Devices.TABLET;       if(d1.equals(d2))   ... 阅读更多

Java中Enum数据类型的equals和==运算符

Samual Sam
更新于2020年6月29日 05:17:47

135 次浏览

我们有四个常量的Devices枚举。enum Devices { LAPTOP, MOBILE, TABLET, DESKTOP; }我们创建了一些对象并用常量为它们赋值。让我们用equals()和==来比较它们。首先,从equals()开始−if(d1.equals(d2)) System.out.println("设备相同。"); else System.out.println("设备不同。");现在,让我们继续检查==if(d1 == d3) System.out.println("设备相同。"); else System.out.println("设备不同。");以下是用equals()和==运算符演示的最终示例−示例 在线演示public class Demo {    enum Devices {       LAPTOP, MOBILE, TABLET, DESKTOP;    }    public static void main(String[] args) { ... 阅读更多

Java中一周几天的枚举

Samual Sam
更新于2020年6月29日 05:19:04

2K+ 次浏览

要设置一周几天的枚举,请将它们设置为常量enum Days { Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday }现在创建对象并设置上述常量−Days today = Days.Wednesday; Days holiday = Days.Sunday;以下是一个示例−示例 在线演示public class Demo {    enum Days {       Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday    }    public static void main(String[] args) {       Days today = Days.Wednesday;       Days holiday = Days.Sunday;       System.out.println("今天 = " + today);       System.out.println(holiday+ "是假日");    } }输出今天 = Wednesday Sunday是假日

上一页 第 779 页,共 931 页 1 ... 777 778 779 780 781 ... 931 下一页
广告