3_springboot_shiro_jwt_多端认证鉴权_Redis缓存管理器.md

1. 什么是Shiro缓存管理器

上一章节分析完了Realm是怎么运作的,自定义的Realm该如何写,需要注意什么。本章来关注Realm中的一个话题,缓存。再看看 AuthorizingRealm 类继承关系
在这里插入图片描述
其中抽象类 CachingRealm ,表示这个Realm是带缓存的,那什么东西是需要缓存的?

我们说Realm主要是提供认证信息(org.apache.shiro.authc.AuthenticationInfo 含有身份信息和凭证信息)和授权信息的(org.apache.shiro.authz.AuthorizationInfo 含有角色,权限信息)这些信息往往会存储到数据库中。 当用户频繁访问系统的时候,SecurityManager 就需要从Realm中获取 认证信息和授权信息来对当前的访问进行 认证和鉴权,这样就会频繁操作数据库。为了提高性能,我们可以将这两个信息缓存起来,下次再需要的时候,直接从缓存中获取,而无需再次调用Reaml来获取。

2. 默认缓存管理器

可以看到在 org.apache.shiro.realm.CachingRealm 类中有一个 org.apache.shiro.cache.CacheManager 它是一个接口,即缓存管理器。既然是缓存管理器,就是说它可以对缓存进行管理。那 Realm 默认情况下使用的是哪个 具体的CacheManager实现?

查阅 AuthorizingRealm 源码,发现CacheManager 是后set进来的。那什么时候set进来的?

上一章节介绍了 SecurityManager 的实例化,它是通过SpringBoot 的自动配置实例化出来的。通过跟踪源码,看到了如下代码:

org.apache.shiro.spring.config.AbstractShiroConfiguration

public class AbstractShiroConfiguration {// 只需要在Spring 容器中配置一个 bean,就会被注入进来@Autowired(required = false)protected CacheManager cacheManager;protected SessionsSecurityManager securityManager(List<Realm> realms) {SessionsSecurityManager securityManager = createSecurityManager();...securityManager.setRealms(realms);...if (cacheManager != null) {securityManager.setCacheManager(cacheManager);}return securityManager;}
}

securityManager.setRealms(realms); 这个方法的内部看到执行了一个方法applyCacheManagerToRealms(), 这个方法会找到系统中所有的realm ,然后依次将 cacheManager配置到realm中。

而且 securityManager 中使用的CacheManager 和 realm中使用的是同一个缓存管理器。

那要找到默认的缓存管理器,就要看看自动配置中有没有配置CacheManager,经过一番查找,并没有找到。也就是说Shiro框架默认是不带缓存的。为了证实想法,可以在 前面 SystemAccountRealmdoGetAuthenticationInfo 方法中获取 CacheManager,然后判断它是否为空:

public class SystemAccountRealm extends AuthorizingRealm {...@Overrideprotected AuthenticationInfo doGetAuthenticationInfo(AuthenticationToken token) throws AuthenticationException {if (getCacheManager() == null) {log.debug("================>cacheManager为空");} else {log.debug("================cacheManager:{}", getCacheManager().getClass().getName());}...}
}

启动应用后进行登录,发现CacheManager果然为空。

3. Shiro Cache与CacheManager

Shiro对 Cache和 CacheManager做了规范,并提供了简单实现
在这里插入图片描述
在这里插入图片描述
MapCache 其实就使用Map来存储数据,将数据缓存到内存中。

MemoryConstrainedCacheManager 就是内存缓存管理器

如果是单机应用,完全可以使用内存来作为缓存。但对于分布式集群化部署的应用,如果还是使用内存,那就会造成数据的不一致。

本章节使用Redis作为Shiro的 Cache。官方并没有提供Redis缓存的实现,所以需要我们自己实现 Cache和 CacheManager接口。

4. 使用Redis作为ShiroCache

请自行准备Redis服务器。这里使用本机上安装的Redis服务。

4.1 引入spring-boot-starter-data-redis

SpringBoot官方有一个 starter,提供了对Redis的访问。首先在xml中引入:

pom.xml

...
<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
...

在application.properties 文件中配置redis服务器参数:

...
spring.redis.database=0
spring.redis.host=127.0.0.1
spring.redis.port=6379
spring.redis.password=123456
...

4.2 自己实现shiro Cache规范

要想用redis作为shiro的 cache,那么就需要自己来实现Cache和CahceManager

ShiroRedisCache.java

package com.qinyeit.shirojwt.demos.shiro.cache;
import org.apache.shiro.cache.Cache;
import org.apache.shiro.cache.CacheException;
import org.springframework.data.redis.core.RedisTemplate;import java.util.Collection;
import java.util.Set;
// 其实就是对数据进行存,取,清除,删除
public class ShiroRedisCache<K, V> implements Cache<K, V> {private RedisTemplate redisTemplate;private String        cacheName;public ShiroRedisCache(RedisTemplate redisTemplate, String cacheName) {this.redisTemplate = redisTemplate;this.cacheName = cacheName;}@Overridepublic V get(K key) throws CacheException {// 取hash中的值return (V) redisTemplate.opsForHash().get(this.cacheName, key.toString());}@Overridepublic V put(K key, V value) throws CacheException {redisTemplate.opsForHash().put(this.cacheName, key.toString(), value);return value;}@Overridepublic V remove(K key) throws CacheException {return (V) redisTemplate.opsForHash().delete(this.cacheName, key.toString());}@Overridepublic void clear() throws CacheException {redisTemplate.delete(this.cacheName);}@Overridepublic int size() {return redisTemplate.opsForHash().size(this.cacheName).intValue();}@Overridepublic Set<K> keys() {return redisTemplate.opsForHash().keys(this.cacheName);}@Overridepublic Collection<V> values() {return redisTemplate.opsForHash().values(this.cacheName);}
}

ShiroRedisCacheManager.java 缓存管理器

package com.qinyeit.shirojwt.demos.shiro.cache;
import org.apache.shiro.cache.Cache;
import org.apache.shiro.cache.CacheException;
import org.apache.shiro.cache.CacheManager;
import org.springframework.data.redis.core.RedisTemplate;
public class ShiroRedisCacheManager implements CacheManager {private RedisTemplate redisTemplate;public ShiroRedisCacheManager(RedisTemplate redisTemplate) {this.redisTemplate = redisTemplate;}// 这个方法由Shiro框加来调用,当需要用到缓存的时候,就会传入缓存的名字,比如我们可以为// 认证信息缓存,为“authenticationCache”;为授权信息缓存,为“authorizationCache”;为“sessionCache”等@Overridepublic <K, V> Cache<K, V> getCache(String name) throws CacheException {// 自动去RedisCahce中找具体实现return new ShiroRedisCache<K, V>(redisTemplate, name);}
}

4.3 开启缓存

从前面的分析知道,只需要将缓存管理器注册为SpringBean, 就会自动注入到 securityManager 中。

引入了 spring-boot-starter-data-redis 之后,自动配置会创建 org.springframework.data.redis.core.RedisTemplate 这个bean, 我们将他配置到Shiro的CacheManager中:

  1. 第8-19行, 配置realm开启 认证和授权数据缓存,并给缓存设置了名字。稍后我们可以到Redis中检查是否缓存成功
  2. 第23-26行配置了自定义的 ShiroRedisCacheManager ,它需要 RedisTemplate 才能工作。
package com.qinyeit.shirojwt.demos.configuration;
...
@Configuration
@Slf4j
public class ShiroConfiguration {@Beanpublic Realm realm() {SystemAccountRealm realm = new SystemAccountRealm();// 开启全局缓存realm.setCachingEnabled(true);// 打开认证缓存realm.setAuthenticationCachingEnabled(true);// 认证缓存的名字,不设置也可以,默认由realm.setAuthenticationCacheName("shiro:authentication:cache");// 打开授权缓存realm.setAuthorizationCachingEnabled(true);// 授权缓存的名字, 不设置也可以,默认由realm.setAuthorizationCacheName("shiro:authorization:cache");return new SystemAccountRealm();}// 创建Shiro 的 CahceManager@Beanpublic CacheManager shiroCacheManager(RedisTemplate redisTemplate) {return new ShiroRedisCacheManager(redisTemplate);}@Beanpublic ShiroFilterChainDefinition shiroFilterChainDefinition() {...}@Beanpublic FilterRegistrationBean<AuthenticationFilter> customShiroFilterRegistration(ShiroFilterFactoryBean shiroFilterFactoryBean) { ... }
}

4.4 Redis序列化错误

此时启动应用,执行登录。 前面我们在SystemAccountRealm.doGetAuthenticationInfo 方法中添加了打印日志,可以看到 cacheManager已经配置成了我们自定义的com.qinyeit.shirojwt.demos.shiro.cache.ShiroRedisCacheManager ,但是后续的执行中报错了:

org.springframework.data.redis.serializer.SerializationException: Cannot serialize; nested exception is org.springframework.core.serializer.support.SerializationFailedException: Failed to serialize object using DefaultSerializer; nested exception is java.io.NotSerializableException: org.apache.shiro.lang.util.SimpleByteSource

意思是,Redis尝试将对象序列化到Redis中的时候,遇到了一个不可序列化的对象org.apache.shiro.lang.util.SimpleByteSource

跟踪源码:

  1. 自定义的 SystemAccountRealm 中的 doGetAuthenticationInfo 是在哪里调用的?这个方法在其父类中被定义为抽象方法,那么它应该是在父类 AuthenticationRealm 中被调用的,下面代码的第 6行就是:

    public final AuthenticationInfo getAuthenticationInfo(AuthenticationToken token) throws AuthenticationException {// 从缓存中获取认证信息AuthenticationInfo info = getCachedAuthenticationInfo(token);// 缓存中没有,则调用 子类 Realm中的 doGetAuthenticationInfo 方法if (info == null) {info = doGetAuthenticationInfo(token);// 如果获取到了 认证信息,则进行缓存if (token != null && info != null) {cacheAuthenticationInfoIfPossible(token, info);}} else {LOGGER.debug("Using cached authentication info [{}] to perform credentials matching.", info);}if (info != null) {// 调用匹配器进行匹配assertCredentialsMatch(token, info);} else {LOGGER.debug("No AuthenticationInfo found for submitted AuthenticationToken [{}].  Returning null.", token);}return info;}
    
  2. 继续跟踪 cacheAuthenticationInfoIfPossible 方法:

        private void cacheAuthenticationInfoIfPossible(AuthenticationToken token, AuthenticationInfo info) {if (!isAuthenticationCachingEnabled(token, info)) {LOGGER.debug("AuthenticationInfo caching is disabled for info [{}].  Submitted token: [{}].", info, token);//return quietly, caching is disabled for this token/info pair:return;}Cache<Object, AuthenticationInfo> cache = getAvailableAuthenticationCache();if (cache != null) {// 获取缓存的Redis中的Hash key . 注意这个key 不是Redis 的key ,Reidskey实际是缓存的名字, 而这里的key是 redis Hash数据结构中的key。 查看自定义的 ShiroRedisCache 的 put方法就不难理解Object key = getAuthenticationCacheKey(token);// 缓存 info, 这里实际上就是在从 Reaml 中 的 doGetAuthenticationInfo 方法返回的 SimpleAuthenticationInfo// 到这里就交个 CacheManager去缓存了cache.put(key, info);LOGGER.trace("Cached AuthenticationInfo for continued authentication.  key=[{}], value=[{}].", key, info);}}
    

    所以自定义的ShiroRedisCache向Redis中 缓存的数据 是一个 Redis Hash, Redis key为:shiro:authentication:cache , Redis Hash 中的key 为:

     protected Object getAuthenticationCacheKey(AuthenticationToken token) {return token != null ? token.getPrincipal() : null;}
    

    就是token中的认证主体,就是用户名。因为AuthenticationToken 的实际类型是 UsernamePasswordToken , getPrincipal() 返回的是用户名

    value就是 从 Reaml 中 的 doGetAuthenticationInfo 方法返回的 SimpleAuthenticationInfo

    至此可以总结出Shiro在 Redis中缓存的数据结构:
    在这里插入图片描述

注意:

认证相关的单词: AuthenticationInfo , SimpleAuthenticationInfo

授权相关的单词:AuthorizationInfo , SimpleAuthorizationInfo

很相似,比较容易搞混淆 。 当然他们都可以自定义

SimpleAuthenticationInfo 中就包含了 SimpleByteSource 类型,默认的序列化器无法完成序列化,所以就需要我们自定义Redis的序列化器

4.5 解决序列化错误

为什么SimpleByteSource 无法完成序列化?看看它的定义:

package org.apache.shiro.lang.util;
...
public class SimpleByteSource implements ByteSource {...
}

它没有实现 java.io.Serializable 即序列化接口。 而系统 RedisTemplate 中默认的序列化器为 JdkSerializationRedisSerializer ,也就是说要序列化的数据全部都需要实现 java.io.Serializable 接口才行。

所以要解决这个序列化错误就有两种办法:

  1. 自定义Shiro的ByteSource
  2. 自定义RedisTemplate中的序列化器

对于两种方案,第一种是最简单的,第二种麻烦一点,大家可以自行百度。

4.5.1 自定义ByteSource 实现Serializable接口

在来看看 SimpleAuthenticationInfo 中的 代码.

public class SimpleAuthenticationInfo implements MergableAuthenticationInfo, SaltedAuthenticationInfo {...protected ByteSource credentialsSalt = SimpleByteSource.empty();public SimpleAuthenticationInfo(Object principal, Object hashedCredentials, ByteSource credentialsSalt, String realmName) {this.principals = new SimplePrincipalCollection(principal, realmName);this.credentials = hashedCredentials;this.credentialsSalt = credentialsSalt;}...@Overridepublic ByteSource getCredentialsSalt() {return credentialsSalt;}...public void setCredentialsSalt(ByteSource salt) {this.credentialsSalt = salt;}...
}

credentialsSalt 其实就是盐值的凭证,它可以通过构造方法传入,也可以通过set方法传入,所以我们只需要定义个子类继承 SimpleByteSource,然后实现Serializable接口即可。下面是代码:

package com.qinyeit.shirojwt.demos.shiro.realm;
...
package com.qinyeit.shirojwt.demos.shiro.realm;
...
//继承SimpleByteSource,然后实现 Serializable接口, 仿照SimpleByteSource 中代码实现
//添加一个无参构造方法,反序列化的时候会用到,要不然依然会报错
public class SaltSimpleByteSource extends CodecSupport implements ByteSource, Serializable {private byte[] bytes;private String cachedHex;private String cachedBase64;// 添加一个无参构造函数,反序列化会用到public SaltSimpleByteSource() {}public SaltSimpleByteSource(byte[] bytes) {this.bytes = bytes;}public SaltSimpleByteSource(char[] chars) {this.bytes = toBytes(chars);}public SaltSimpleByteSource(String string) {this.bytes = toBytes(string);}public SaltSimpleByteSource(ByteSource source) {this.bytes = source.getBytes();}public SaltSimpleByteSource(File file) {this.bytes = toBytes(file);}public SaltSimpleByteSource(InputStream stream) {this.bytes = toBytes(stream);}@Overridepublic byte[] getBytes() {return bytes;}@Overridepublic String toHex() {if (this.cachedHex == null) {this.cachedHex = Hex.encodeToString(this.getBytes());}return this.cachedHex;}@Overridepublic String toBase64() {if (this.cachedBase64 == null) {this.cachedBase64 = Base64.encodeToString(this.getBytes());}return this.cachedBase64;}public String toString() {return this.toBase64();}public int hashCode() {return this.bytes != null && this.bytes.length != 0 ? Arrays.hashCode(this.bytes) : 0;}public boolean equals(Object o) {if (o == this) {return true;} else if (o instanceof ByteSource) {ByteSource bs = (ByteSource) o;return Arrays.equals(this.getBytes(), bs.getBytes());} else {return false;}}@Overridepublic boolean isEmpty() {return this.bytes == null || this.bytes.length == 0;}
}

4.5.2 在Realm中使用自定义的SaltSimpleByteSource

将 Reaml中返回SimpleAuthenticationInfo 中的 ByteSource替换成我们自己的 SaltSimpleByteSource

package com.qinyeit.shirojwt.demos.shiro.realm;
...
@Slf4j
public class SystemAccountRealm extends AuthorizingRealm {...@Overrideprotected AuthenticationInfo doGetAuthenticationInfo(AuthenticationToken token) throws AuthenticationException {if (getCacheManager() == null) {log.info("================>cacheManager为空");} else {log.info("================cacheManager:{}", getCacheManager().getClass().getName());}// 1.从传过来的认证Token信息中,获得账号String account = token.getPrincipal().toString();// 2.通过用户名到数据库中获取整个用户对象SystemAccount systemAccount = systemAccountMap.get(account);if (systemAccount == null) {throw new UnknownAccountException();}// 3. 创建认证信息,即用户正确的用户名和密码。// 四个参数:// 第一个参数为主体,第二个参数为凭证,第三个参数为Realm的名称// 因为上面将凭证信息和主体身份信息都保存在 SystemAccount中了,所以这里直接将 SystemAccount对象作为主体信息即可// 第二个参数表示凭证,匹配器中会从 SystemAccount中获取盐值,密码登凭证信息,所以这里直接传null。// 第三个参数,表示盐值,这里使用了自定义的SaltSimpleByteSource,之所以在这里new了一个自定义的SaltSimpleByteSource,// 是因为开启redis缓存的情况下,序列化会报错// 第四个参数表示 Realm的名称SimpleAuthenticationInfo authenticationInfo = new SimpleAuthenticationInfo(systemAccount,null,new SaltSimpleByteSource(systemAccount.getSalt()),getName());// authenticationInfo.setCredentialsSalt(null);return authenticationInfo;}...    
}

4.6 查看Redis 中的key

做如下操作后查看Redis服务器中的key:

  1. 登录

    登录执行完毕之后,就会对认证信息 AuthenticationInfo 进行缓存
    在这里插入图片描述

  2. 访问home

    访问home的时候,会调用Reaml中的doGetAuthenticationInfo 方法获取认证信息,此时因为缓存中已经有了认证信息,所以直接从缓存中获取。home页面需要鉴权才能访问,所以第一次会调用Reaml中的doGetAuthorizationInfo 方法获取鉴权信息,然后放入到缓存中。
    在这里插入图片描述

4.7 Key前面的16进制字符是什么?

我们发现Redis 中的key前面有几个16进制的字符,这是为什么? 这还是因为RedisTemplate 中使用的序列化器使用的都是默认的 JdkSerializationRedisSerializer , 它将所有的key都当成Object来进行序列化。 我们可以将 与key相关的序列化器配置成 StringRedisSerializer ,前面的16进制字符就消失了。

RedisTemplate 中有如下的序列化器可以配置:

  • keySerializer: redis key序列化器
  • valueSerializer: redis value 序列化器
  • hashKeySerializer: reids Hash 结构中的key的序列化器
  • hashValueSerializer: redis Hash 结构中的value的序列化器

下面将 RedisTemplate 中的 keySerializer, 和 hashKeySerializer 指定为 StringRedisSerializer:

package com.qinyeit.shirojwt.demos.configuration;
...
@Configuration
@Slf4j
public class ShiroConfiguration {...@Beanpublic CacheManager shiroCacheManager(RedisTemplate redisTemplate) {RedisSerializer<String> stringSerializer = RedisSerializer.string();// 设置key的序列化器redisTemplate.setKeySerializer(stringSerializer);// 设置 Hash 结构中 key 的序列化器redisTemplate.setHashKeySerializer(stringSerializer);return new ShiroRedisCacheManager(redisTemplate);}    ...
}

修改完毕之后,就看起来正常了:
在这里插入图片描述

4.8 缓存什么时候清除

在CachingRealm中,找到了如下代码:

public abstract class CachingRealm implements Realm, Nameable, CacheManagerAware, LogoutAware {// LogoutAware 接口中定义的方法,当Subject 调用退出的时候,会委托securityManager来调用这个方法// 此时就会将当前登录用户的 缓存清理掉public void onLogout(PrincipalCollection principals) {clearCache(principals);}...protected void clearCache(PrincipalCollection principals) {if (!isEmpty(principals)) {doClearCache(principals);LOGGER.trace("Cleared cache entries for account with principals [{}]", principals);}}// 实际执行的时候,会调用子类中重写的方法protected void doClearCache(PrincipalCollection principals) {}...
}

在这里插入图片描述
可以看到, AuthenticationRealm 和 AuthorizingRealm 中都重写了这个方法,所以 退出的时候会清理掉 认证信息和授权信息

5. 总结

  • 缓存管理器主要缓存 Reaml中 返回的认证信息和授权信息
  • Shiro自动配置中没有配置缓存管理器。
  • 自定义Shiro Redis Cache 缓存管理器步骤:
    • 实现 Shiro Cachce接口 org.apache.shiro.cache.Cache
    • 实现Shiro CacheManager接口 org.apache.shiro.cache.CacheManage
    • 在配置中将自定义的CacheManager配置成Spring Bean
    • 在Reaml中开启缓存
    • Shiro中的org.apache.shiro.lang.util.SimpleByteSource 没有实现序列化接口,所以RedisTemplate序列化的时候由于采用的是 JdkSerializationRedisSerializer ,这样会报错。所以要自定义 SimpleByteSource ,实现序列化接口即可解决这个问题
  • 登录或者认证的时候,都会调用Realm的 doGetAuthenticationInfo 方法,此时会使用配置的缓存管理器来缓存 认证信息数据
  • 鉴权的时候,会调用 Realm 的 doGetAuthorizationInfo方法,此时会调用配置的缓存管理器来缓存鉴权数据。
  • 退出的时候,会清理当前用户下的认证和鉴权数据信息。

代码仓库 https://github.com/kaiwill/shiro-jwt , 本节代码在 3_springboot_shiro_jwt_多端认证鉴权_Redis缓存管理器 分支上.

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.hqwc.cn/news/537508.html

如若内容造成侵权/违法违规/事实不符,请联系编程知识网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

吴恩达CNN之卷积初学习---二维卷积

1、卷积的实现 从左到右的矩阵可以看作&#xff1a;一幅图像、过滤器filter&#xff08;核&#xff09;、另一幅图像 编程中卷积的实现&#xff1a;支持卷积的深度学习框架都会有一些函数实现这个卷积运算 python&#xff1a;conv_forward函数 TensorFlow&#xff1a;tf.nn.…

28-Java业务代表模式(Business Delegate Pattern)

Java业务代表模式 实现范例 业务代表模式&#xff08;Business Delegate Pattern&#xff09;用于对表示层和业务层解耦业务代表模式用来减少通信或对表示层代码中的业务层代码的远程查询功能在业务层中我们有以下实体: 客户端&#xff08;Client&#xff09; - 表示层代码可以…

Kubernetes(k8s第四部分之servers)

1&#xff0c;为什么不使用round-robin DNS&#xff1f; 因为DNS有缓存&#xff0c;不会清理&#xff0c;无法负载均衡 ipvs代理模式&#xff0c;这种模式&#xff0c;kube-proxy会监视Kubernetes Service 对象和Endpoints&#xff0c;调用netlink接口以相应地创建ipvs规则并…

Netty架构详解

文章目录 概述整体结构Netty的核心组件逻辑架构BootStrap & ServerBootStrapChannelPipelineFuture、回调和 ChannelHandler选择器、事件和 EventLoopChannelHandler的各种ChannelInitializer类图 Protocol Support 协议支持层Transport Service 传输服务层Core 核心层模块…

uniapp h5 部署

uniapp 配置 服务器文件路径 打包文件结构 //nginx 配置 server {listen 8300;server_name bfqcwebsiteapp;charset utf-8;#允许跨域请求的域&#xff0c;* 代表所有add_header Access-Control-Allow-Origin *;#允许带上cookie请求add_header Access-Control-Allow-C…

有来团队后台项目-解析7

sass 安装 因为在使用vite 创建项目的时候,已经安装了sass,所以不需要安装。 如果要安装,那么就执行 npm i -D sass 创建文件 src 目录下创建文件 目录结构如图所示: reset.scss *, ::before, ::after {box-sizing: border-box;border-color: currentcolor;border-st…

IEEE期刊检索、顶刊顶会

1、IEEE期刊检索 2、顶刊 1&#xff09;IJCV&#xff1a;International Journal of Computer Vision 2&#xff09;TIP: IEEE Transactions on Image Processing 3&#xff09;TPAMI: IEEE Trans on Pattern Analysis and Machine Intelligence 3、顶会 CVPR、ICCV、ECCV、…

day2_C++:引用、结构体、类

1.自己封装一个矩形类(Rect)&#xff0c;拥有私有属性:宽度(width)、高度(height) 定义公有成员函数&#xff1a; 初始化函数:void init(int w, int h) 更改宽度的函数:set_w(int w) 更改高度的函数:set_h(int h) 输出该矩形的周长和面积函数:void show() 程序代码&#…

2024 年排名前 5 名的 Mac 数据恢复软件分享

如果您已经在 Mac 上丢失了数据并且正在寻找恢复数据的方法&#xff0c;那么您来对地方了。互联网上有超过 50 个适用于 Mac 的数据恢复程序。哪个是最好的 Mac 数据恢复软件&#xff1f;不用担心。本文列出了 5 款 Mac 数据恢复软件&#xff0c;可帮助您在 Mac OS 下恢复丢失的…

【代码随想录 | 链表 02】反转链表

文章目录 2.反转链表2.1题目2.2解法2.2.1双指针法2.2.2递归法 2.反转链表 2.1题目 206.反转链表——力扣链接 给你单链表的头节点 head &#xff0c;请你反转链表&#xff0c;并返回反转后的链表。 示例一&#xff1a; 输入&#xff1a;head [1,2,3,4,5] 输出&#xff1a;…

DC电源模块的故障排除与维修方法

BOSHIDA DC电源模块的故障排除与维修方法 当DC电源模块出现故障时&#xff0c;可以按照以下步骤进行排除和维修&#xff1a; 1.检查电源输入&#xff1a;首先检查电源输入是否正常&#xff0c;包括输入电压是否稳定&#xff0c;输入电流是否符合要求。如果输入电源有问题&…

为了跳槽或提升自己,你会先学习哪一门编程语言?

通过多个调查表的分析&#xff0c;发现大家对于GO语言的兴趣和需求非常高。GO语言是一种由Google开发的静态类型、编译型语言&#xff0c;最初于2007年问世。这门语言的设计者是Robert Griesemer、Rob Pike和Ken Thompson&#xff0c;他们的初衷是为了弥补C和Java在大规模软件工…