博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java bitset_Java BitSet size()方法与示例
阅读量:2534 次
发布时间:2019-05-11

本文共 1652 字,大约阅读时间需要 5 分钟。

java bitset

BitSet类的size()方法 (BitSet Class size() method)

  • size() method is available in java.util package.

    size()方法在java.util包中可用。

  • size() method is used to return the size (i.e. the memory allocated to the actual number of bits by using this BitSet to denote bits.

    size()方法用于返回大小(即通过使用此BitSet表示位来分配给实际位数的内存)。

  • size() method is a non-static method, so it is accessible with the class object and if we try to access the method with the class name then we will get an error.

    size()方法是一种非静态方法,因此可以通过类对象进行访问,如果尝试使用类名称访问该方法,则会收到错误消息。

  • size() method does not throw an exception at the time of returning the size of this BitSet.

    返回此BitSet的大小时, size()方法不会引发异常。

Syntax:

句法:

public int size();

Parameter(s):

参数:

  • It does not accept any parameter.

    它不接受任何参数。

Return value:

返回值:

The return type of this method is int, it returns the size (i.e. the number of bits sets in this BitSet).

此方法的返回类型为int ,它返回大小(即此BitSet中的位数设置)。

Example:

例:

// Java program to demonstrate the example // of int size() method of BitSet.import java.util.*;public class SizeOfBitSet {
public static void main(String[] args) {
// create an object of BitSet BitSet bs = new BitSet(10); // By using set() method is to set // the values in BitSet bs.set(10); bs.set(20); bs.set(30); bs.set(40); bs.set(50); // Display Bitset System.out.println("bs: " + bs); // By using size() method is to return // the size of this BitSet int size = bs.size(); // Display size System.out.println("bs.size(): " + size); }}

Output

输出量

bs: {10, 20, 30, 40, 50}bs.size(): 64

翻译自:

java bitset

转载地址:http://xcvzd.baihongyu.com/

你可能感兴趣的文章
shell——按指定列排序
查看>>
crash 收集
查看>>
507 LOJ 「LibreOJ NOI Round #1」接竹竿
查看>>
UI基础--烟花动画
查看>>
2018. 2.4 Java中集合嵌套集合的练习
查看>>
精通ASP.NET Web程序测试
查看>>
vue 根据不同属性 设置背景
查看>>
51Nod1601 完全图的最小生成树计数 Trie Prufer编码
查看>>
Codeforces 1110D. Jongmah 动态规划
查看>>
android驱动在win10系统上安装的心酸历程
查看>>
优雅的程序员
查看>>
oracle之三 自动任务调度
查看>>
Android dex分包方案
查看>>
ThreadLocal为什么要用WeakReference
查看>>
删除本地文件
查看>>
FOC实现概述
查看>>
base64编码的图片字节流存入html页面中的显示
查看>>
这个大学时代的博客不在维护了,请移步到我的新博客
查看>>
GUI学习之二十一——QSlider、QScroll、QDial学习总结
查看>>
nginx反向代理docker registry报”blob upload unknown"解决办法
查看>>