当前位置: 首页 > news >正文

Android Bitmap详解(下)之图片缓存详解

前言:

之前有出过俩篇关于bitmap相关的讲解,分别是Bitmap详解(上)常用概念和常用API和Bitmap详解(中)之像素级操作,今天主要是来一个系统的总结。

认识Bitmap:

Bitmap是Android系统中的图像处理的最重要类之一。用它可以获取图像文件信息,进行图像剪切、旋转、缩放等操作,并可以指定格式保存图像文件。

常用重要函数如下:

  1. public void recycle() // 回收位图占用的内存空间,把位图标记为Dead

  2. public final boolean isRecycled() //判断位图内存是否已释放

  3. public final int getWidth()//获取位图的宽度

  4. public final int getHeight()//获取位图的高度

  5. public final boolean isMutable()//图片是否可修改

  6. public int getScaledWidth(Canvas canvas)//获取指定密度转换后的图像的宽度

  7. public int getScaledHeight(Canvas canvas)//获取指定密度转换后的图像的高度

  8. public boolean compress(CompressFormat format, int quality, OutputStream stream)//按指定的图片格式以及画质,将图片转换为输出流。
    format:Bitmap.CompressFormat.PNG或Bitmap.CompressFormat.JPEG
    quality:画质,0-100.0表示最低画质压缩,100以最高画质压缩。对于PNG等无损格式的图片,会忽略此项设置。

  9. public static Bitmap createBitmap(Bitmap src) //以src为原图生成不可变得新图像

  10. public static Bitmap createScaledBitmap(Bitmap src, int dstWidth, int dstHeight, boolean filter)//以src为原图,创建新的图像,指定新图像的高宽以及是否可变。

  11. public static Bitmap createBitmap(int width, int height, Config config)——创建指定格式、大小的位图

  12. public static Bitmap createBitmap(Bitmap source, int x, int y, int width, int height)以source为原图,创建新的图片,指定起始坐标以及新图像的高宽。

BitmapFactory工厂类:

Option 参数类:

  1. public boolean inJustDecodeBounds//如果设置为true,不获取图片,不分配内存,但会返回图片的高度宽度信息。
  2. public int inSampleSize//图片缩放的倍数
  3. public int outWidth//获取图片的宽度值
  4. public int outHeight//获取图片的高度值
  5. public int inDensity//用于位图的像素压缩比
  6. public int inTargetDensity//用于目标位图的像素压缩比(要生成的位图)
  7. public byte[] inTempStorage //创建临时文件,将图片存储
  8. public boolean inScaled//设置为true时进行图片压缩,从inDensity到inTargetDensity
  9. public boolean inDither //如果为true,解码器尝试抖动解码
  10. public Bitmap.Config inPreferredConfig //设置解码器
  11. public String outMimeType //设置解码图像
  12. public boolean inPurgeable//当存储Pixel的内存空间在系统内存不足时是否可以被回收
  13. public boolean inInputShareable //inPurgeable为true情况下才生效,是否可以共享一个InputStream
  14. public boolean inPreferQualityOverSpeed //为true则优先保证Bitmap质量其次是解码速度
  15. public boolean inMutable //配置Bitmap是否可以更改,比如:在Bitmap上隔几个像素加一条线段
  16. public int inScreenDensity //当前屏幕的像素密度

工厂方法:

  1. public static Bitmap decodeByteArray(byte[] data, int offset, int length) //从数组读取图片
  2. public static Bitmap decodeByteArray(byte[] data, int offset, int length, Options opts)
  3. public static Bitmap decodeFileDescriptor(FileDescriptor fd)//从文件读取文件 与decodeFile不同的是这个直接调用JNI函数进行读取 效率比较高
  4. public static Bitmap decodeFileDescriptor(FileDescriptor fd, Rect outPadding, Options opts)
  5. public static Bitmap decodeFile(String pathName, Options opts) //从文件读取图片
  6. public static Bitmap decodeFile(String pathName)
  7. public static Bitmap decodeStream(InputStream is) //从输入流读取图片
  8. public static Bitmap decodeStream(InputStream is, Rect outPadding, Options opts)
  9. public static Bitmap decodeResource(Resources res, int id) //从资源文件读取图片
  10. public static Bitmap decodeResource(Resources res, int id, Options opts)

Bitmap.Config inPreferredConfig :

枚举变量 (位图位数越高代表其可以存储的颜色信息越多,图像越逼真,占用内存越大)

  1. public static final Bitmap.Config ALPHA_8 //代表8位Alpha位图 每个像素占用1byte内存
  2. public static final Bitmap.Config ARGB_4444 //代表16位ARGB位图 每个像素占用2byte内存
  3. public static final Bitmap.Config ARGB_8888 //代表32位ARGB位图 每个像素占用4byte内存
  4. public static final Bitmap.Config RGB_565 //代表8位RGB位图 每个像素占用2byte内存

Android中一张图片(BitMap)占用的内存主要和以下几个因数有关:图片长度,图片宽度,单位像素占用的字节数。一张图片(BitMap)占用的内存=图片长度图片宽度单位像素占用的字节数。

图片读取实例:

  • 从文件读取方式一
   /*** 获取缩放后的本地图片** @param filePath 文件路径* @param width    宽* @param height   高* @return*/public static Bitmap readBitmapFromFile(String filePath, int width, int height) {BitmapFactory.Options options = new BitmapFactory.Options();options.inJustDecodeBounds = true;BitmapFactory.decodeFile(filePath, options);float srcWidth = options.outWidth;float srcHeight = options.outHeight;int inSampleSize = 1;if (srcHeight > height || srcWidth > width) {if (srcWidth > srcHeight) {inSampleSize = Math.round(srcHeight / height);} else {inSampleSize = Math.round(srcWidth / width);}}options.inJustDecodeBounds = false;options.inSampleSize = inSampleSize;return BitmapFactory.decodeFile(filePath, options);}
  • 从文件读取方式二 效率高于方式一
/*** 获取缩放后的本地图片** @param filePath 文件路径* @param width    宽* @param height   高* @return*/public static Bitmap readBitmapFromFileDescriptor(String filePath, int width, int height) {try {FileInputStream fis = new FileInputStream(filePath);BitmapFactory.Options options = new BitmapFactory.Options();options.inJustDecodeBounds = true;BitmapFactory.decodeFileDescriptor(fis.getFD(), null, options);float srcWidth = options.outWidth;float srcHeight = options.outHeight;int inSampleSize = 1;if (srcHeight > height || srcWidth > width) {if (srcWidth > srcHeight) {inSampleSize = Math.round(srcHeight / height);} else {inSampleSize = Math.round(srcWidth / width);}}options.inJustDecodeBounds = false;options.inSampleSize = inSampleSize;return BitmapFactory.decodeFileDescriptor(fis.getFD(), null, options);} catch (Exception ex) {}return null;}
  • 从输入流中读取文件
  /*** 获取缩放后的本地图片** @param ins    输入流* @param width  宽* @param height 高* @return*/public static Bitmap readBitmapFromInputStream(InputStream ins, int width, int height) {BitmapFactory.Options options = new BitmapFactory.Options();options.inJustDecodeBounds = true;BitmapFactory.decodeStream(ins, null, options);float srcWidth = options.outWidth;float srcHeight = options.outHeight;int inSampleSize = 1;if (srcHeight > height || srcWidth > width) {if (srcWidth > srcHeight) {inSampleSize = Math.round(srcHeight / height);} else {inSampleSize = Math.round(srcWidth / width);}}options.inJustDecodeBounds = false;options.inSampleSize = inSampleSize;return BitmapFactory.decodeStream(ins, null, options);}
  • 从资源文件中读取文件
    public static Bitmap readBitmapFromResource(Resources resources, int resourcesId, int width, int height) {BitmapFactory.Options options = new BitmapFactory.Options();options.inJustDecodeBounds = true;BitmapFactory.decodeResource(resources, resourcesId, options);float srcWidth = options.outWidth;float srcHeight = options.outHeight;int inSampleSize = 1;if (srcHeight > height || srcWidth > width) {if (srcWidth > srcHeight) {inSampleSize = Math.round(srcHeight / height);} else {inSampleSize = Math.round(srcWidth / width);}}options.inJustDecodeBounds = false;options.inSampleSize = inSampleSize;return BitmapFactory.decodeResource(resources, resourcesId, options);}
  • 从二进制数据读取图片
public static Bitmap readBitmapFromByteArray(byte[] data, int width, int height) {BitmapFactory.Options options = new BitmapFactory.Options();options.inJustDecodeBounds = true;BitmapFactory.decodeByteArray(data, 0, data.length, options);float srcWidth = options.outWidth;float srcHeight = options.outHeight;int inSampleSize = 1;if (srcHeight > height || srcWidth > width) {if (srcWidth > srcHeight) {inSampleSize = Math.round(srcHeight / height);} else {inSampleSize = Math.round(srcWidth / width);}}options.inJustDecodeBounds = false;options.inSampleSize = inSampleSize;return BitmapFactory.decodeByteArray(data, 0, data.length, options);}
  • 从assets文件读取图片
  /*** 获取缩放后的本地图片** @param filePath 文件路径* @return*/public static Bitmap readBitmapFromAssetsFile(Context context, String filePath) {Bitmap image = null;AssetManager am = context.getResources().getAssets();try {InputStream is = am.open(filePath);image = BitmapFactory.decodeStream(is);is.close();} catch (IOException e) {e.printStackTrace();}return image;}

图片保存文件:

    public static void writeBitmapToFile(String filePath, Bitmap b, int quality) {try {File desFile = new File(filePath);FileOutputStream fos = new FileOutputStream(desFile);BufferedOutputStream bos = new BufferedOutputStream(fos);b.compress(Bitmap.CompressFormat.JPEG, quality, bos);bos.flush();bos.close();} catch (IOException e) {e.printStackTrace();}}

图片压缩:

    private static Bitmap compressImage(Bitmap image) {if (image == null) {return null;}ByteArrayOutputStream baos = null;try {baos = new ByteArrayOutputStream();image.compress(Bitmap.CompressFormat.JPEG, 100, baos);byte[] bytes = baos.toByteArray();ByteArrayInputStream isBm = new ByteArrayInputStream(bytes);Bitmap bitmap = BitmapFactory.decodeStream(isBm);return bitmap;} catch (OutOfMemoryError e) {} finally {try {if (baos != null) {baos.close();}} catch (IOException e) {}}return null;}

图片缩放:

        /*** 根据scale生成一张图片** @param bitmap* @param scale  等比缩放值* @return*/public static Bitmap bitmapScale(Bitmap bitmap, float scale) {Matrix matrix = new Matrix();matrix.postScale(scale, scale); // 长和宽放大缩小的比例Bitmap resizeBmp = Bitmap.createBitmap(bitmap, 0, 0, bitmap.getWidth(), bitmap.getHeight(), matrix, true);return resizeBmp;}

获取图片旋转角度:

 /*** 读取照片exif信息中的旋转角度** @param path 照片路径* @return角度*/private static int readPictureDegree(String path) {if (TextUtils.isEmpty(path)) {return 0;}int degree = 0;try {ExifInterface exifInterface = new ExifInterface(path);int orientation = exifInterface.getAttributeInt(ExifInterface.TAG_ORIENTATION, ExifInterface.ORIENTATION_NORMAL);switch (orientation) {case ExifInterface.ORIENTATION_ROTATE_90:degree = 90;break;case ExifInterface.ORIENTATION_ROTATE_180:degree = 180;break;case ExifInterface.ORIENTATION_ROTATE_270:degree = 270;break;}} catch (Exception e) {}return degree;}

图片旋转角度:

    private static Bitmap rotateBitmap(Bitmap b, float rotateDegree) {if (b == null) {return null;}Matrix matrix = new Matrix();matrix.postRotate(rotateDegree);Bitmap rotaBitmap = Bitmap.createBitmap(b, 0, 0, b.getWidth(), b.getHeight(), matrix, true);return rotaBitmap;}

图片转二进制:

    public byte[] bitmap2Bytes(Bitmap bm) {ByteArrayOutputStream baos = new ByteArrayOutputStream();bm.compress(Bitmap.CompressFormat.PNG, 100, baos);return baos.toByteArray();}

Bitmap转Drawable

  public static Drawable bitmapToDrawable(Resources resources, Bitmap bm) {Drawable drawable = new BitmapDrawable(resources, bm);return drawable;}

Drawable转Bitmap

    public static Bitmap drawableToBitmap(Drawable drawable) {Bitmap bitmap = Bitmap.createBitmap(drawable.getIntrinsicWidth(), drawable.getIntrinsicHeight(), drawable.getOpacity() != PixelFormat.OPAQUE ? Bitmap.Config.ARGB_8888 : Bitmap.Config.RGB_565);Canvas canvas = new Canvas(bitmap);drawable.setBounds(0, 0, drawable.getIntrinsicWidth(), drawable.getIntrinsicHeight());drawable.draw(canvas);return bitmap;}

Drawable、Bitmap占用内存比较

之前一直使用过Afinal 和Xutils 熟悉这两框架的都知道,两者出自同一人,Xutils是Afina的升级版,AFinal中的图片内存缓存使用的是Bitmap 而后来为何Xutils将内存缓存的对象改成了Drawable了呢?我们一探究竟。下面写个测试程序做个验证。

        List bitmaps = new ArrayList<>();start = System.currentTimeMillis();for (int i = 0; i < testMaxCount; i++) {Bitmap bitmap = BitmapUtils.readBitMap(this, R.mipmap.ic_app_center_banner);bitmaps.add(bitmap);Log.e(TAG, "BitmapFactory Bitmap--num-->" + i);}end = System.currentTimeMillis();Log.e(TAG, "BitmapFactory Bitmap--time-->" + (end - start));List drawables = new ArrayList<>();start = System.currentTimeMillis();for (int i = 0; i < testMaxCount; i++) {Drawable drawable = getResources().getDrawable(R.mipmap.ic_app_center_banner);drawables.add(drawable);Log.e(TAG, "BitmapFactory Drawable--num-->" + i);}end = System.currentTimeMillis();Log.e(TAG, "BitmapFactory Drawable--time-->" + (end - start));

测试结果大家可以自行验证,从我本人测试结果来看,相同的1000张图片,Bitmap 直接70条数据的时候挂掉,而Drawable 轻松1000条数据通过。

从测试说明Drawable 相对Bitmap有很大的内存占用优势。这也是为啥现在主流的图片缓存框架内存缓存那一层采用Drawable作为缓存对象的原因。

总结:

  • 了解Bitmap常用api方法可以很好的有助于与我们平时开发过程中对图片做出优化处理,从而满足我们的需求同时保证了app的流畅性
  • 测试说明Drawable 相对Bitmap有很大的内存占用优势。这也是为啥现在主流的图片缓存框架内存缓存那一层采用Drawable作为缓存对象的原因。因此我们要合理灵活使用Drawable和Bitmap。

相关文章:

Android Bitmap详解(下)之图片缓存详解

前言&#xff1a; 之前有出过俩篇关于bitmap相关的讲解&#xff0c;分别是Bitmap详解(上)常用概念和常用API和Bitmap详解(中)之像素级操作&#xff0c;今天主要是来一个系统的总结。 认识Bitmap&#xff1a; Bitmap是Android系统中的图像处理的最重要类之一。用它可以获取图像…...

020-从零搭建微服务-认证中心(九)

写在最前 如果这个项目让你有所收获&#xff0c;记得 Star 关注哦&#xff0c;这对我是非常不错的鼓励与支持。 源码地址&#xff08;后端&#xff09;&#xff1a;https://gitee.com/csps/mingyue 源码地址&#xff08;前端&#xff09;&#xff1a;https://gitee.com/csps…...

孤注一掷中的黑客技术

最近孤注一掷电影很火&#xff0c;诈骗团伙的骗术实在厉害&#xff0c;就连电影中的黑客潘生都未能幸免。电影中的陆经理说&#xff1a;不是我们坏&#xff0c; 是他们贪。这句话我觉得有一部分是对的&#xff0c;诈骗分子抓住了人的本性贪婪&#xff0c;才使得被骗的人逐步走向…...

机器学习笔记 - PyTorch Image Models图像模型概览 (timm)

一、简述 PyTorch Image Models (timm)是一个用于最先进的图像分类的库,包含图像模型、优化器、调度器、增强等的集合;是比较热门的论文及代码库。 虽然越来越多的低代码和无代码解决方案可以轻松开始将深度学习应用于计算机视觉问题,但我们经常与希望寻求定制解决方案的客户…...

Java 实现证件照底图替换,Java 实现照片头像底图替换

效果图 这里前端用layui实现的案例截图 color底图颜色可以在网页上这样取色 new Color(34, 133, 255) 实现案例下载链接&#xff1a;https://download.csdn.net/download/weixin_43992507/88237432...

周易卦爻解读笔记——未济

第六十四卦未济 火水未济 离上坎下 未济卦由否卦所变&#xff0c;否卦六二与九五换位&#xff0c;象征尚未完成。 天地否 未济卦和既济卦既是错卦又是覆卦&#xff0c;这也是最后一卦&#xff0c;序卦传【物不可穷也&#xff0c;故受之以未济终焉】 未济卦象征尚未完成&…...

AI 绘画Stable Diffusion 研究(十三)SD数字人制作工具SadTlaker使用教程

免责声明: 本案例所用安装包免费提供&#xff0c;无任何盈利目的。 大家好&#xff0c;我是风雨无阻。 想必大家经常看到&#xff0c;无论是在产品营销还是品牌推广时&#xff0c;很多人经常以数字人的方式来为自己创造财富。而市面上的数字人收费都比较昂贵&#xff0c;少则几…...

伦敦金走势图行情值得关注

不知道大家是否了解过伦敦金这个投资品种&#xff0c;或者有否财经网站以及金融终端上看到过它的行情走势图。其实&#xff0c;伦敦金并不是一种实实在在的黄金&#xff0c;而是一种跟踪伦敦现货黄金市场价格走势的黄金保证金交易品种&#xff0c;它每天的行情走势变化&#xf…...

机器学习之数据清洗

一、介绍 数据清洗是机器学习中的一个重要步骤&#xff0c;它涉及对原始数据进行预处理和修复&#xff0c;以使数据适用于机器学习算法的训练和分析。数据清洗的目标是处理数据中的噪声、缺失值、异常值和不一致性等问题&#xff0c;以提高数据的质量和准确性。 二、方法 处理…...

T599聚合物电容器:在汽车应用中提供更长的使用寿命的解决方案

自从电子技术被引入汽车工业以来&#xff0c;汽车的技术含量一直在提升。诸多技术被应用在汽车上&#xff0c;使汽车的形象更接近于轮子上的超级计算机。更多传感器、更强大的计算能力和电力被装载到汽车上&#xff0c;汽车应用中的电子产品数量正在迅速增长。随着电动汽车和自…...

学习ts(五)类

定义 是面向对象程序设计&#xff08;OOP&#xff09;实现信息封装的基础 类是一种用户定义的引用数据类型&#xff0c;也称类类型 JavaScript的class,虽然本质是构造函数&#xff0c;但是使用起来已经方便了许多&#xff0c;js中没有加入修饰符和抽象类等特性 ts的class支持面…...

EasyImage简单图床 - 快速搭建私人图床云盘同时远程访问【无公网IP内网穿透】

憧憬blog主页 在强者的眼中&#xff0c;没有最好&#xff0c;只有更好。我们是移动开发领域的优质创作者&#xff0c;同时也是阿里云专家博主。 ✨ 关注我们的主页&#xff0c;探索iOS开发的无限可能&#xff01; &#x1f525;我们与您分享最新的技术洞察和实战经验&#xff0…...

从SVG到Canvas:选择最适合你的Web图形技术

SVG 和 Canvas 都是可以在 Web 浏览器中绘制图形的技术。 众所周知&#xff0c; icon 通常使用 svg&#xff08;如 iconfont&#xff09;&#xff0c;而交互式游戏采用 Canvas。二者具体的区别是什么&#xff1f;该如何选择&#xff1f; 声明式还是命令式&#xff1f;绘制的图形…...

基于 Redis 实现分布式限流

基于 Redis 实现分布式限流 一、 简介二、分布式限流1 数据结构1.1 Redis List1.2 Redis Set1.3 Redis Sorted Set 2 实现分布式限流3 实现原理分析 三、分布式限流算法1. 计数器算法2. 漏斗算法3. 令牌桶算法 四、分布式限流实战1. 单机限流实现2. 基于Redis Clusters的分布式…...

前端下载文件方式(Blob)

以下以下载图标svg文件为例&#xff0c;实现点击按钮下载文件&#xff0c;其中icon结构如下&#xff1a; const DownloadSvg (props) > {function download(downfile) {const tmpLink document.createElement("a");const objectUrl URL.createObjectURL(downfi…...

【STM32】FreeRTOS软件定时器学习

软件定时器 FreeRTOS提供了现成的软件定时器功能&#xff0c;可以一定程度上替代硬件定时器&#xff0c;但精度不高。 实验&#xff1a;创建一个任务&#xff0c;两个定时器&#xff0c;按键开启定时器&#xff0c;一个500ms打印一次&#xff0c;一个1000ms打印一次。 实现&…...

【LeetCode】复写零

复写零 题目描述算法描述编程代码 链接: 复写零 题目描述 算法描述 编程代码 class Solution { public:void duplicateZeros(vector<int>& arr) {int n arr.size();int dest -1,cur 0;while(cur < n){if(arr[cur]){dest;}else{dest2;}cur;if(dest > n-1){…...

使用docker-maven-plugin插件构建镜像并推送至私服Harbor

前言 如下所示&#xff0c;建议使用 Dockerfile Maven 插件&#xff0c;但该插件也停止维护更新了。因此先暂时使用docker-maven-plugin插件。 一、开启Docker服务器的远程访问 1.1 开启2375远程访问 默认的dokcer是不支持远程访问的&#xff0c;需要加点配置&#xff0c;开…...

YOLO目标检测——动漫头像数据集下载分享

动漫头像数据集是用于研究和分析动漫头像相关问题的数据集&#xff0c;它包含了大量的动漫风格的头像图像。动漫头像是指以动漫风格绘制的虚构人物的头像图像&#xff0c;常见于动画、漫画、游戏等媒体。 数据集点击下载&#xff1a;YOLO动漫头像数据集50800图片.rar...

学习Vue:Vue3 VS Vue2

Vue 3作为Vue.js的最新版本&#xff0c;带来了一系列令人激动的新特性和改进&#xff0c;让开发者们在构建现代Web应用时体验更加顺畅和高效。本文将全面介绍Vue 3相对于Vue 2的改进&#xff0c;重点解释Composition API的使用&#xff0c;以及新引入的Teleport和Suspense等特性…...

1.2亿成都市城市安全风险综合监测预警平台建设项目

导读&#xff1a;原文《1.2亿&#xff01;成都市城市安全风险综合监测预警平台建设项目WORD》&#xff08;获取来源见文尾&#xff09;&#xff0c;本文精选其中精华及架构部分&#xff0c;逻辑清晰、内容完整&#xff0c;为快速形成售前方案提供参考。 部分页面&#xff1a; …...

《树莓派4B家庭服务器搭建指南》第二十期:在树莓派运行rsnapshot, 实现对服务器数据低成本增量本地备份

title: 020《树莓派4B家庭服务器搭建指南》第二十期&#xff1a;在树莓派运行rsnapshot, 实现对服务器数据低成本增量本地备份 我的天翼云服务器有/opt 和 /usr/share/nginx两个目录, 用来存储网站的内容, 数据无价, 为了避免珍贵的数据丢失&#xff0c;我决定使用树莓派运行 …...

大数据 算法

什么是大数据 大数据是指数据量巨大、类型繁多、处理速度快的数据集合。这些数据集合通常包括结构化数据&#xff08;如数据库中的表格数据&#xff09;、半结构化数据&#xff08;如XML文件&#xff09;和非结构化数据&#xff08;如文本、音频和视频文件&#xff09;。大数据…...

html | 基于iframe的简易富文本编辑器

效果图 支持: 选中后 ctrlI 斜体 代码 思路就是在iframe种嵌套html和css。 <pre> - 支持: 选中后 ctrlI 斜体 - todo: 鼠标实现单击斜体 </pre> <iframe name"richedit" style"height:30%; width:100%;"></iframe><script…...

HJ108 求最小公倍数

描述 正整数A和正整数B 的最小公倍数是指 能被A和B整除的最小的正整数值&#xff0c;设计一个算法&#xff0c;求输入A和B的最小公倍数。 数据范围&#xff1a;1≤a,b≤100000 1≤a,b≤100000 输入描述&#xff1a; 输入两个正整数A和B。 输出描述&#xff1a; 输出A和B…...

JVM - 垃圾收集器

目录 垃圾收集器 串行垃圾收集器 并行垃圾收集器 什么是 吞吐量优先 什么是 响应时间优先 &#xff1f; CMS&#xff08;并发&#xff09;垃圾收集器 G1 垃圾收集器 垃圾收集器 垃圾收集器大概可以分为&#xff1a; 串行垃圾收集器并行垃圾收集器CMS&#xff08;并发&a…...

华为数通方向HCIP-DataCom H12-821题库(单选题:21-40)

第21题 在广播类型网络中,DIS默认发送Hello时间间隔为多少? A、10s B、3.3s C、5S D、40s 答案&#xff1a;B 解析&#xff1a; 在广播环境中,DIS 发送 hello 报文的周期更加的短,是普通ISIS路由器的1/3,普通ISIS路由器发送hello的时间为10s,所以DIS发送hello的周期是3.3s …...

Springboot+mybaits-plus+h2集成产生的一些问题(not found tables)

一、问题描述 org.h2.jdbc.JdbcSQLSyntaxErrorException: Table "EP_MAPPING" not found (this database is empty);大概就是说在引入mybatis-plus的依赖后&#xff0c;找不到数据库找不到表的问题。 排查方向&#xff1a;在引入mybatish2时&#xff0c;是可以正常…...

【C#学习笔记】C#特性的继承,封装,多态

文章目录 封装访问修饰符静态类和静态方法静态构造函数 继承继承原则sealed修饰符里氏替换原则继承中的构造函数 多态接口接口的实例化 抽象类和抽象方法抽象类和接口的异同 虚方法同名方法new覆盖的父类方法继承的同名方法 运行时的多态性编译时的多态性 照理继承封装多态应该…...

常用的电参数

电参数根据电流的特点可以分为直流电参数和交流电参数&#xff0c;在电参数中有些是可以通过电参数表测得&#xff0c;有些参数则为通过测得的参数计算而来。 一、电参数 1.1 直接可测电参数 ——瞬时电压值 ——瞬时电流值 n——采样点数 f——频率 time——时间 其中&…...

怎么样找到做直销的人 有什么网站/搜索网站排行榜

关于组合数取模和逆元的知识的参考 http://blog.csdn.net/acdreamers/article/details/8037918 http://blog.csdn.net/acdreamers/article/details/8220787#comments 题目&#xff1a; 有一个无限大的矩形&#xff0c;初始时你在左上角&#xff08;即第一行第一列&#xff…...

男男sm怎么做视频网站/网级移动营销app下载

转自&#xff1a;http://developer.51cto.com/art/201507/483448.htm GitHub是一个免费托管开源代码的Git服务器&#xff0c;如果我们不想公开项目的源代码&#xff0c;又不想付费使用&#xff0c;那么我们可以自己搭建一台Git服务器。 下面我们就看看&#xff0c;如何在Ubuntu…...

domain 网站建设/创建网址快捷方式

转载于:https://www.cnblogs.com/LiLihongqiang/p/5721842.html...

学做网站要多少钱/百度地图收录提交入口

maven环境变量设置 wondows 一、下载 开源网址&#xff1a;http://maven.apache.org/ 下载网址&#xff1a;http://maven.apache.org/download.html 二、Windows下面的安装 下载最新版&#xff1a;apache-maven-2.0.9-bin.zip 解压到你想保存的目录&#xff0c;比如&#xff1a…...

做网站要学些什么/宣传方式有哪些

今天需要将测试系统迁移到生产系统&#xff0c;于是在生产库中创建相应用户基表空间后&#xff0c;将测试系统的数据通过exp/imp(数据量不大)迁移到生产库上。通过windows下自带的ftp服务器上传到unix服务器上后&#xff0c;通过imp showy查看导入的内容以降低出错的概率&#…...

怎么做一个动态网站吗/seo查询 站长之家

Linux中的网络配置一、什么是IP ADDRESS二、子网掩码三、ip通信判定四、临时管理网卡1.相关命令2.实验&#xff1a;临时管理网卡五、永久管理网卡1.nm-connection-editor图形方式管理网络2.nmtui文本模式下图形配置网络3.nmcli命令设定网络4.通过管理网络配置文件设定网络六、网…...