iOS不改变frame,能写出一个位移动画

在iOS开发中,如果不想通过直接修改视图的frame属性来实现位移动画,有十多种方法,总结如下:

方法一:使用CABasicAnimation

可以使用Core Animation的CABasicAnimation类或UIView动画块来实现。下面分别展示这两种方法。

1.CABasicAnimation

CABasicAnimation可以用于对视图的图层属性进行动画化。通过更改图层的position属性,可以实现位移动画而不直接修改视图的frame

示例代码:

#import <QuartzCore/QuartzCore.h>UIView *view = [[UIView alloc] initWithFrame:CGRectMake(100, 100, 100, 100)];
view.backgroundColor = [UIColor blueColor];
[self.view addSubview:view];// 创建位移动画
CABasicAnimation *animation = [CABasicAnimation animationWithKeyPath:@"position"];
animation.fromValue = [NSValue valueWithCGPoint:view.layer.position];
animation.toValue = [NSValue valueWithCGPoint:CGPointMake(300, 300)];
animation.duration = 1.0;
animation.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];// 应用动画到图层
[view.layer addAnimation:animation forKey:@"positionAnimation"];// 最终位置
view.layer.position = CGPointMake(300, 300);

     2. CAKeyframeAnimation

CAKeyframeAnimation允许我们通过指定一系列的关键帧来实现复杂的动画效果。它可以用于改变图层的position属性,从而实现视图的移动。

示例代码:

#import <QuartzCore/QuartzCore.h>// 创建一个视图
UIView *view = [[UIView alloc] initWithFrame:CGRectMake(100, 100, 100, 100)];
view.backgroundColor = [UIColor blueColor];
[self.view addSubview:view];// 创建关键帧动画
CAKeyframeAnimation *animation = [CAKeyframeAnimation animationWithKeyPath:@"position"];// 设置起点和终点
CGPoint startPoint = view.layer.position;
CGPoint endPoint = CGPointMake(300, 300);// 创建路径
CGMutablePathRef path = CGPathCreateMutable();
CGPathMoveToPoint(path, NULL, startPoint.x, startPoint.y);
CGPathAddLineToPoint(path, NULL, endPoint.x, endPoint.y);// 将路径赋值给动画
animation.path = path;
animation.duration = 2.0;// 添加动画到图层
[view.layer addAnimation:animation forKey:@"moveAnimation"];// 释放路径
CGPathRelease(path);

分析

  1. 创建视图:首先创建一个视图并添加到当前视图控制器的视图中。

  2. 创建关键帧动画:使用CAKeyframeAnimation创建一个关键帧动画,并指定要改变的属性为position

  3. 设置路径:创建一个路径,从起点到终点。路径可以是直线、曲线等,这里我们使用直线。

  4. 将路径赋值给动画:将创建的路径赋值给动画的path属性,并设置动画的持续时间。

  5. 添加动画到图层:将动画添加到视图的图层中。

方法二:使用UIView动画块

使用UIView动画块可以更方便地实现位移动画,且不需要直接操作图层。

示例代码:

UIView *view = [[UIView alloc] initWithFrame:CGRectMake(100, 100, 100, 100)];
view.backgroundColor = [UIColor blueColor];
[self.view addSubview:view];// 使用UIView动画块
[UIView animateWithDuration:1.0delay:0options:UIViewAnimationOptionCurveEaseInOutanimations:^{// 改变视图的中心点view.center = CGPointMake(300, 300);}completion:nil];

注意事项

  1. 动画完成后的位置:

    • 在使用CABasicAnimation时,需要在动画结束后手动设置图层的最终位置,因为动画只是改变了图层的“表现”而不是实际的属性值。
    • 在使用UIView动画块时,动画结束后视图的位置会被自动更新。
  2. 动画的keyPath:

    • CABasicAnimation中,keyPath决定了动画作用的属性。对于位移动画,通常使用"position""transform.translation"
  3. 图层的隐式动画:

    • UIView实际上是CALayer的封装,所有视图的动画都是通过图层实现的。直接使用图层动画可以实现更精细的控制。

通过这两种方法,可以在不直接修改视图frame的情况下实现位移动画,从而实现更灵活和精细的动画效果。根据实际需求选择合适的方法,可以使动画代码更简洁和易于维护。

方法三: 利用锚点 

利用锚点(anchorPoint)来实现位移动画是一种较为高级的技术。锚点定义了视图旋转和缩放的中心点,通过改变锚点,同时调整视图的position属性,可以实现视图的位移动画,而不直接修改视图的frame

以下是使用anchorPoint结合position属性实现位移动画的示例代码:

示例代码

#import <QuartzCore/QuartzCore.h>UIView *view = [[UIView alloc] initWithFrame:CGRectMake(100, 100, 100, 100)];
view.backgroundColor = [UIColor blueColor];
[self.view addSubview:view];// 保存当前的中心点
CGPoint originalCenter = view.center;// 目标位置
CGPoint targetCenter = CGPointMake(300, 300);// 计算新锚点和新位置
CGPoint newAnchorPoint = CGPointMake((targetCenter.x - view.frame.origin.x) / view.frame.size.width,(targetCenter.y - view.frame.origin.y) / view.frame.size.height);// 创建位移动画
CABasicAnimation *animation = [CABasicAnimation animationWithKeyPath:@"position"];
animation.fromValue = [NSValue valueWithCGPoint:view.layer.position];
animation.toValue = [NSValue valueWithCGPoint:targetCenter];
animation.duration = 1.0;
animation.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];// 应用动画到图层
[view.layer addAnimation:animation forKey:@"positionAnimation"];// 更改锚点后,重新设置视图的中心点
view.layer.anchorPoint = newAnchorPoint;
view.layer.position = targetCenter;

解释

  1. 保存当前中心点:

    • 在更改anchorPoint之前,保存视图当前的center,以便在更改锚点后重新调整视图的位置。
  2. 计算新锚点和新位置:

    • 计算新锚点值。新锚点的计算基于目标位置相对于视图原始位置的比例。
  3. 创建位移动画:

    • 使用CABasicAnimation创建一个position属性的动画,从当前的position到目标位置。
  4. 应用动画到图层:

    • 将动画应用到视图的图层。
  5. 更改锚点后,重新设置视图的中心点:

    • 更改锚点为新计算的锚点,然后更新图层的position到目标位置。

注意事项

  1. 动画完成后的位置:

    • 在动画完成后,需要手动修改视图的anchorPointposition,以确保视图在最终位置正确显示。
  2. 锚点和位置的关系:

    • 更改锚点会影响视图的position属性,因此在更改锚点后,需要重新计算和设置视图的位置。
  3. 复杂性:

    • 使用锚点进行位移动画比直接修改frame或使用UIView动画块要复杂,适用于需要更精细控制动画和视图位置的情况。

通过这种方法,可以利用锚点实现位移动画,从而在不直接修改视图frame的情况下实现视图的移动。这种方法提供了更大的灵活性,特别是在需要精确控制视图位置和动画效果时。

方法四: 使用定时器(Timer)

可以使用NSTimer或者GCD的定时器来实现动画,通过定时器周期性地更新视图的位置来实现位移动画。

示例代码:

UIView *view = [[UIView alloc] initWithFrame:CGRectMake(100, 100, 100, 100)];
view.backgroundColor = [UIColor blueColor];
[self.view addSubview:view];CGPoint startPoint = view.center;
CGPoint endPoint = CGPointMake(300, 300);
NSTimeInterval duration = 2.0; // 动画持续时间
NSTimeInterval interval = 0.01; // 定时器触发间隔__block NSTimeInterval elapsedTime = 0;// 使用GCD定时器
dispatch_queue_t queue = dispatch_get_main_queue();
dispatch_source_t timer = dispatch_source_create(DISPATCH_SOURCE_TYPE_TIMER, 0, 0, queue);
dispatch_source_set_timer(timer, dispatch_time(DISPATCH_TIME_NOW, 0), interval * NSEC_PER_SEC, 0);
dispatch_source_set_event_handler(timer, ^{elapsedTime += interval;if (elapsedTime >= duration) {dispatch_source_cancel(timer);view.center = endPoint;} else {CGFloat t = elapsedTime / duration;view.center = CGPointMake(startPoint.x + (endPoint.x - startPoint.x) * t,startPoint.y + (endPoint.y - startPoint.y) * t);}
});
dispatch_resume(timer);

方法五:使用CADisplayLink 

CADisplayLink是一个高效的定时器,可以在屏幕刷新时调用指定的方法。通过它可以实现更平滑的动画效果。

示例代码:

UIView *view = [[UIView alloc] initWithFrame:CGRectMake(100, 100, 100, 100)];
view.backgroundColor = [UIColor blueColor];
[self.view addSubview:view];CGPoint startPoint = view.center;
CGPoint endPoint = CGPointMake(300, 300);
NSTimeInterval duration = 2.0; // 动画持续时间__block NSTimeInterval startTime = CACurrentMediaTime();// 使用CADisplayLink
CADisplayLink *displayLink = [CADisplayLink displayLinkWithTarget:self selector:@selector(updateAnimation:)];
displayLink.userInfo = @{@"view": view,@"startPoint": [NSValue valueWithCGPoint:startPoint],@"endPoint": [NSValue valueWithCGPoint:endPoint],@"duration": @(duration),@"startTime": @(startTime)};
[displayLink addToRunLoop:[NSRunLoop mainRunLoop] forMode:NSRunLoopCommonModes];- (void)updateAnimation:(CADisplayLink *)displayLink {NSDictionary *userInfo = displayLink.userInfo;UIView *view = userInfo[@"view"];CGPoint startPoint = [userInfo[@"startPoint"] CGPointValue];CGPoint endPoint = [userInfo[@"endPoint"] CGPointValue];NSTimeInterval duration = [userInfo[@"duration"] doubleValue];NSTimeInterval startTime = [userInfo[@"startTime"] doubleValue];NSTimeInterval currentTime = CACurrentMediaTime();NSTimeInterval elapsedTime = currentTime - startTime;if (elapsedTime >= duration) {view.center = endPoint;[displayLink invalidate];} else {CGFloat t = elapsedTime / duration;view.center = CGPointMake(startPoint.x + (endPoint.x - startPoint.x) * t,startPoint.y + (endPoint.y - startPoint.y) * t);}
}

CADisplayLink:通过屏幕刷新时调用的方法,更新视图的位置实现动画。

这两种方法都提供了对动画过程的精细控制,但CADisplayLink通常更适合实现平滑动画,因为它与屏幕刷新频率同步。

 方法六:手势识别(Gesture Recognizers) 

虽然手势识别通常用于用户交互,但也可以用于自动移动视图。通过模拟手势,可以实现视图的动画效果。

示例代码:

UIView *view = [[UIView alloc] initWithFrame:CGRectMake(100, 100, 100, 100)];
view.backgroundColor = [UIColor blueColor];
[self.view addSubview:view];CGPoint endPoint = CGPointMake(300, 300);// 创建一个手势识别器
UIPanGestureRecognizer *panGesture = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(handlePan:)];
[view addGestureRecognizer:panGesture];// 模拟手势移动
[UIView animateWithDuration:2.0animations:^{view.center = endPoint;}];// 手势处理方法
- (void)handlePan:(UIPanGestureRecognizer *)gesture {// 处理手势逻辑
}

方法七:KVO(Key-Value Observing)结合自定义动画逻辑 

通过KVO监控视图的位置变化,并在变化时执行自定义动画逻辑。

示例代码:

UIView *view = [[UIView alloc] initWithFrame:CGRectMake(100, 100, 100, 100)];
view.backgroundColor = [UIColor blueColor];
[self.view addSubview:view];// 添加KVO监听
[view addObserver:self forKeyPath:@"center" options:NSKeyValueObservingOptionNew context:nil];// 目标位置
CGPoint endPoint = CGPointMake(300, 300);// 手动更新视图位置
dispatch_async(dispatch_get_main_queue(), ^{view.center = endPoint;
});// KVO回调方法
- (void)observeValueForKeyPath:(NSString *)keyPathofObject:(id)objectchange:(NSDictionary<NSKeyValueChangeKey,id> *)changecontext:(void *)context {if ([keyPath isEqualToString:@"center"]) {// 自定义动画逻辑CGPoint newCenter = [change[NSKeyValueChangeNewKey] CGPointValue];[UIView animateWithDuration:2.0 animations:^{((UIView *)object).center = newCenter;}];}
}

方法八:UIKit Dynamics

UIKit Dynamics提供了一种物理引擎,可以用来实现基于物理的动画效果。

示例代码:

UIView *view = [[UIView alloc] initWithFrame:CGRectMake(100, 100, 100, 100)];
view.backgroundColor = [UIColor blueColor];
[self.view addSubview:view];// 创建动力学动画器
UIDynamicAnimator *animator = [[UIDynamicAnimator alloc] initWithReferenceView:self.view];// 创建重力行为
UIGravityBehavior *gravity = [[UIGravityBehavior alloc] initWithItems:@[view]];// 创建碰撞行为
UICollisionBehavior *collision = [[UICollisionBehavior alloc] initWithItems:@[view]];
collision.translatesReferenceBoundsIntoBoundary = YES;// 添加行为到动画器
[animator addBehavior:gravity];
[animator addBehavior:collision];

方法九:Core Graphics动画 

可以使用Core Graphics绘制视图,然后通过逐帧绘制实现动画效果。

示例代码:

@implementation CustomView- (void)drawRect:(CGRect)rect {// 自定义绘制代码CGContextRef context = UIGraphicsGetCurrentContext();CGContextSetFillColorWithColor(context, [UIColor blueColor].CGColor);CGContextFillRect(context, rect);
}@endCustomView *view = [[CustomView alloc] initWithFrame:CGRectMake(100, 100, 100, 100)];
[self.view addSubview:view];CGPoint endPoint = CGPointMake(300, 300);// 使用定时器逐帧绘制
NSTimer *timer = [NSTimer scheduledTimerWithTimeInterval:0.01 target:self selector:@selector(updateView:) userInfo:@{@"view": view, @"endPoint": [NSValue valueWithCGPoint:endPoint]} repeats:YES];// 更新视图位置
- (void)updateView:(NSTimer *)timer {NSDictionary *userInfo = timer.userInfo;CustomView *view = userInfo[@"view"];CGPoint endPoint = [userInfo[@"endPoint"] CGPointValue];// 计算新的位置CGFloat dx = (endPoint.x - view.center.x) * 0.1;CGFloat dy = (endPoint.y - view.center.y) * 0.1;view.center = CGPointMake(view.center.x + dx, view.center.y + dy);// 检查是否到达目标位置if (fabs(view.center.x - endPoint.x) < 1 && fabs(view.center.y - endPoint.y) < 1) {[timer invalidate];}
}

方法十: 使用CGAffineTransform进行平移 

CGAffineTransform提供了一种矩阵变换的方法,可以用来对视图进行平移、缩放、旋转等操作。通过transform属性,可以实现位移动画。

示例代码:

UIView *view = [[UIView alloc] initWithFrame:CGRectMake(100, 100, 100, 100)];
view.backgroundColor = [UIColor blueColor];
[self.view addSubview:view];CGPoint endPoint = CGPointMake(300, 300);
CGPoint translation = CGPointMake(endPoint.x - view.center.x, endPoint.y - view.center.y);[UIView animateWithDuration:2.0 animations:^{view.transform = CGAffineTransformTranslate(view.transform, translation.x, translation.y);
}];

方法十一:Layer的position属性(不使用CABasicAnimation)  

虽然不能使用CABasicAnimation,但可以直接修改图层的position属性,并使用定时器或CADisplayLink来平滑过渡。

示例代码:

UIView *view = [[UIView alloc] initWithFrame:CGRectMake(100, 100, 100, 100)];
view.backgroundColor = [UIColor blueColor];
[self.view addSubview:view];CGPoint startPoint = view.layer.position;
CGPoint endPoint = CGPointMake(300, 300);
NSTimeInterval duration = 2.0; // 动画持续时间__block NSTimeInterval startTime = CACurrentMediaTime();CADisplayLink *displayLink = [CADisplayLink displayLinkWithTarget:self selector:@selector(updateLayerPosition:)];
displayLink.userInfo = @{@"layer": view.layer,@"startPoint": [NSValue valueWithCGPoint:startPoint],@"endPoint": [NSValue valueWithCGPoint:endPoint],@"duration": @(duration),@"startTime": @(startTime)};
[displayLink addToRunLoop:[NSRunLoop mainRunLoop] forMode:NSRunLoopCommonModes];- (void)updateLayerPosition:(CADisplayLink *)displayLink {NSDictionary *userInfo = displayLink.userInfo;CALayer *layer = userInfo[@"layer"];CGPoint startPoint = [userInfo[@"startPoint"] CGPointValue];CGPoint endPoint = [userInfo[@"endPoint"] CGPointValue];NSTimeInterval duration = [userInfo[@"duration"] doubleValue];NSTimeInterval startTime = [userInfo[@"startTime"] doubleValue];NSTimeInterval currentTime = CACurrentMediaTime();NSTimeInterval elapsedTime = currentTime - startTime;if (elapsedTime >= duration) {layer.position = endPoint;[displayLink invalidate];} else {CGFloat t = elapsedTime / duration;layer.position = CGPointMake(startPoint.x + (endPoint.x - startPoint.x) * t,startPoint.y + (endPoint.y - startPoint.y) * t);}
}

方法十二:自定义动画引擎  

可以实现一个简单的自定义动画引擎,通过插值计算来逐帧更新视图的位置。

示例代码:

@interface CustomAnimator : NSObject@property (nonatomic, weak) UIView *view;
@property (nonatomic) CGPoint startPoint;
@property (nonatomic) CGPoint endPoint;
@property (nonatomic) NSTimeInterval duration;
@property (nonatomic) NSTimeInterval startTime;
@property (nonatomic, strong) CADisplayLink *displayLink;- (void)startAnimation;@end@implementation CustomAnimator- (void)startAnimation {self.startTime = CACurrentMediaTime();self.displayLink = [CADisplayLink displayLinkWithTarget:self selector:@selector(updateAnimation)];[self.displayLink addToRunLoop:[NSRunLoop mainRunLoop] forMode:NSRunLoopCommonModes];
}- (void)updateAnimation {NSTimeInterval currentTime = CACurrentMediaTime();NSTimeInterval elapsedTime = currentTime - self.startTime;if (elapsedTime >= self.duration) {self.view.center = self.endPoint;[self.displayLink invalidate];} else {CGFloat t = elapsedTime / self.duration;self.view.center = CGPointMake(self.startPoint.x + (self.endPoint.x - self.startPoint.x) * t,self.startPoint.y + (self.endPoint.y - self.startPoint.y) * t);}
}@endUIView *view = [[UIView alloc] initWithFrame:CGRectMake(100, 100, 100, 100)];
view.backgroundColor = [UIColor blueColor];
[self.view addSubview:view];CustomAnimator *animator = [[CustomAnimator alloc] init];
animator.view = view;
animator.startPoint = view.center;
animator.endPoint = CGPointMake(300, 300);
animator.duration = 2.0;
[animator startAnimation];

方法十三:  使用UIScrollViewcontentOffset属性 

通过将目标视图嵌入到一个UIScrollView中,并调整contentOffset来实现视图的移动。UIScrollView的平滑滚动机制可以用来模拟动画效果。

示例代码:

// 创建一个 UIScrollView
UIScrollView *scrollView = [[UIScrollView alloc] initWithFrame:self.view.bounds];
scrollView.backgroundColor = [UIColor clearColor];
scrollView.contentSize = CGSizeMake(self.view.bounds.size.width * 2, self.view.bounds.size.height);
[self.view addSubview:scrollView];// 创建要移动的目标视图
UIView *targetView = [[UIView alloc] initWithFrame:CGRectMake(100, 100, 100, 100)];
targetView.backgroundColor = [UIColor blueColor];
[scrollView addSubview:targetView];// 设置起点和终点
CGPoint startPoint = targetView.frame.origin;
CGPoint endPoint = CGPointMake(300, 100);// 初始位置(将scrollView的contentOffset设置为起点)
scrollView.contentOffset = startPoint;// 使用 scrollView 的动画方法模拟移动
[UIView animateWithDuration:2.0 animations:^{scrollView.contentOffset = endPoint;
}];

分析

  1. 创建UIScrollView:首先创建一个UIScrollView并设置其contentSize大于屏幕的大小,以便有足够的空间进行平移。

  2. 添加目标视图:将目标视图添加到UIScrollView中,并设置其初始位置。

  3. 设置起点和终点:通过调整UIScrollViewcontentOffset属性来实现视图的移动。

  4. 动画实现:使用UIView的动画块来平滑地改变contentOffset,从而实现目标视图的移动。

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

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

相关文章

质量小议38 -- 60岁退休的由来

总是要有个标准&#xff0c;质量更是如些。 标准不是固定不变的&#xff0c;与时俱进。 关键词&#xff1a;当时的人均寿命&#xff1b;渐进式 60岁退休。 22大学毕业开始工作&#xff08;当然可能会更早&#xff09;&#xff0c;到60岁退休&#xff0c;要工作38年。 …

C++ 史上首次超越 C,跃至榜二

TIOBE 公布了 2024 年 6 月的编程语言排行榜。 C在本月的TIOBE指数中成功超越了C&#xff0c;成为新的第二名。它是一种被广泛应用于嵌入式系统、游戏开发和金融交易软件等领域的编程语言。这次的排名是C在TIOBE指数中的历史最高位&#xff0c;同时也是C语言的历史最低位。 T…

深入解析JVM内部结构及GC机制的实战应用

一、JVM内部结构概述 JVM&#xff08;jdk1.8&#xff09;的内部结构主要包括以下几个部分&#xff1a; 类加载子系统&#xff08;Class Loader Subsystem&#xff09;运行时数据区&#xff08;Runtime Data Area&#xff09;执行引擎&#xff08;Execution Engine&#xff09…

React+TS前台项目实战(二)-- 路由配置 + 组件懒加载 + Error Boundary使用

文章目录 前言一、路由配置和懒加载lazy的使用二、TS版本Error Boundary组件封装三、在layout组件中使用Suspense组件和错误边界组件总结 前言 本文将详细介绍项目中的页面路由配置和异步组件懒加载处理&#xff0c;以提高用户体验&#xff0c;实现过渡效果。 一、路由配置和懒…

(2024,自监督 ViT,全监督 ViT,损失可视化,MAE,RC-MAE,自蒸馏,EMA)可视化自监督 ViT 的损失景观

Visualizing the loss landscape of Self-supervised Vision Transformer 公和众和号&#xff1a;EDPJ&#xff08;进 Q 交流群&#xff1a;922230617 或加 VX&#xff1a;CV_EDPJ 进 V 交流群&#xff09; 目录 0 摘要 2 基础&#xff1a;MAE 和 RC-MAE 3 损失景观 3.1 分…

QT C++(QT控件 QPushButton,QRadioButton,QCheckBox)

文章目录 1. QPushButton 普通按钮2. QRadioButton 单选按钮3. QCheckBox 复选按钮 1. QPushButton 普通按钮 QPushButton中的重要属性 text&#xff1a;按钮中的文本icon&#xff1a;按钮的图标iconSize&#xff1a;按钮中图标的尺寸shortCut&#xff1a;按钮对应的快捷键&a…

Unity3d使用3D WebView for Windows and macOS打开全景网页(720云)操作问题记录

问题描述 使用Unity3d内嵌网页的形式打开720云中的全景图这个功能&#xff0c;使用的是3D WebView for Windows and macOS插件&#xff0c;720云的全景图在浏览器上的操作是滑动鼠标滚轮推远/拉近全景图&#xff0c;鼠标左键拖拽网页可以旋转全景图内容。网页的打开过程是正常…

RK3588 Android13自定义一个按键实现长按短按

一、kernel修改 diff --git a/arch/arm64/boot/dts/rockchip/rk3588-nvr-demo.dtsi b/arch/arm64/boot/dts/rockchip/rk3588-nvr-demo.dtsi index 5aae5c613825..4cc1223f9cbf 100755 --- a/arch/arm64/boot/dts/rockchip/rk3588-nvr-demo.dtsib/arch/arm64/boot/dts/rockchip…

IDEA创建Mybatis项目

IDEA创建Mybatis项目 第一步&#xff1a;创建库表 -- 创建数据库 create database mybatis_db;-- 使用数据库 use mybatis_db;-- 创建user表 CREATE TABLE user (id INT AUTO_INCREMENT PRIMARY KEY,username VARCHAR(50) NOT NULL,password VARCHAR(50) NOT NULL,email VARC…

transformer中对于QKV的个人理解

目录 1、向量点乘 2、相似度计算举例 3、QKV分析 4、整体流程 (1) 首先从词向量到Q、K、V (2) 计算Q*&#xff08;K的转置&#xff09;&#xff0c;并归一化之后进行softmax (3) 使用刚得到的权重矩阵&#xff0c;与V相乘&#xff0c;计算加权求和。 5、多头注意力 上面…

记一次postgresql拼接函数string_agg() 和row_number() 使用

PG两个函数使用需求和简单介绍 需求背景介绍第一个需求背景是这样的需求升级一下接下来讲讲STRING_AGG()基本语法排序 然后我们再说说ROW_NUMBER()基本语法使用 row_number() over (partition by) 进行分组统计使用 row_num限定每组数量 需求背景介绍 第一个需求背景是这样的 …

【MATLAB源码-第222期】基于matlab的改进蚁群算法三维栅格地图路径规划,加入精英蚁群策略。包括起点终点,障碍物,着火点,楼梯。

操作环境&#xff1a; MATLAB 2022a 1、算法描述 蚁群算法&#xff08;Ant Colony Optimization&#xff0c;ACO&#xff09;是一种通过模拟蚂蚁觅食行为的启发式优化算法。它由意大利学者Marco Dorigo在20世纪90年代初提出&#xff0c;最初用于解决旅行商问题&#xff08;T…

从《千脑智能》看大模型

千脑智能与大模型 千脑智能介绍 世界模型千脑智能理论——对大脑的全新理解旧大脑&#xff1a;演化的历史烙印新大脑&#xff1a;智慧的创新引擎新旧大脑的互动与争斗启示与借鉴 大脑对信息的处理和建模六根六尘六识 新脑&#xff1a;智能的创新中枢旧脑&#xff1a;生存的本能…

Web前端笔记:深入探索与实战精髓

Web前端笔记&#xff1a;深入探索与实战精髓 Web前端&#xff0c;作为构建互联网世界的基石之一&#xff0c;承载了用户与网页交互的桥梁作用。对于前端开发者而言&#xff0c;不断积累与更新自己的知识体系显得尤为重要。本文将从四个方面、五个方面、六个方面和七个方面&…

Spring的Controller是单例还是多例,如何保证线程安全的。

目录 验证是否单例&#xff08;默认单例&#xff09; 多例测试 单例对象成员变量测试 多例对象成员变量测试 解决方案 结论&#xff1a; 补充说明 答案&#xff1a;controller默认是单例的&#xff0c;不要使用非静态的成员变量&#xff0c;否则会发生数据逻辑混乱。 正…

求宇文玥在水下的浮力和赵丽颖捞他的时间

关注微信公众号 数据分析螺丝钉 免费领取价值万元的python/java/商业分析/数据结构与算法学习资料 2024年汉东省在达康书记的带领下率先实现高考试点改革。为让更多的考生能提升对他们的理解和记忆&#xff0c;把电视剧的场景融入考试题目中。确保学生看一遍就懂&#xff0c;想…

STM32 proteus + STM32Cubemx仿真教程(第一课LED教程)

文章目录 前言一、STM32点亮LED灯的原理1.1GPIO是什么1.2点亮LED灯的原理 二、STM32Cubemx创建工程三、proteus仿真电路图四、程序代码编写1.LED灯操作函数介绍HAL_GPIO_WritePin函数原型参数说明示例代码 HAL_GPIO_TogglePin函数原型参数说明示例代码 2.代码编写3.烧写程序 总…

(三)React事件

1. React基础事件绑定 语法&#xff1a; on 事件名称 { 事件处理程序 }&#xff0c;整体上遵循驼峰命名法 App.js //项目根组件 //App -> index.js -> public/index.html(root)function App() {const handleClick () > {console.log(button被点击了)}return (<…

【值得一看的新特性】JDK21

文章目录 1. JEP 425: 虚拟线程 (Virtual Threads)1.1 是什么1.2 为什么1.3 怎么用 2. JEP 428: 结构化并发 (Structured Concurrency)2.1 是什么2.2 为什么2.3 怎么用 3. JEP 440: Record模式 (Record Patterns)3.1 是什么Record类型 3.2 为什么3.3 怎么用 4. JEP 427: switch…

9.0 Android中的网络技术

Android中网络相关的技术&#xff0c;主要分别两种&#xff0c;一种为直接显示网页&#xff0c;另外一种为获取服务器中的数据进行设置。 权限声明 访问网络是需要声明权限 <manifest xmlns:android"http://schemas.android.com/apk/res/android"package"…