『功能项目』鼠标悬停物品显示信息【77】

本章项目成果展示

我们打开上一篇763D模型动态UI显示的项目,

本章要做的事情是鼠标悬停在道具身上显示对应信息

首先制作一个武器Image信息面板

重命名为WeaponUI01

设为隐藏

修改脚本:RightClickItem.cs

查看挂载脚本:

运行项目 - 当鼠标悬停背包中的装备时

继续制作面板 - 修改增加其他装备

首先增加装备栏里的插槽位置标签

修改脚本:RightClickItem.cs

修改脚本:UGUICanvas.cs

增加装备栏插槽sprite需要加载图片

创建脚本:RightClickShoesBack.cs

using QFramework.Example;
using QFramework;
using System.Collections;
using UnityEngine;
using UnityEngine.UI;
using UnityEngine.EventSystems;
public class RightClickShoesBack : MonoBehaviour, IPointerClickHandler{Image childImage;Sprite ShoesIconNormal;GameManager gm;GameObject currentCanvas;void Start(){gm = GameManager.Instance;ShoesIconNormal = Resources.Load<Sprite>("Prefabs/UGUIIcons/IndigoShieldtIcon_14");currentCanvas = GameObject.Find("CurrentCanvas").gameObject;}public void OnPointerClick(PointerEventData eventData){if (eventData.button == PointerEventData.InputButton.Right){if (transform.GetComponent<Image>().sprite == null)return;Transform Icon = currentCanvas.transform.Find("BagExample/Scroll View/Viewport/SlotItemRoot/UISlot(Clone)/Icon").transform;Icon.gameObject.SetActive(true);childImage = GameObject.FindWithTag("ShoesEquipPos").GetComponent<Image>();GameObject[] uiSlots = GameObject.FindGameObjectsWithTag("UISlot");foreach (GameObject uiSlot in uiSlots){Image imageComponent = uiSlot.GetComponent<Image>();if (imageComponent != null && imageComponent.sprite == null){ItemKit.AddItem(ConfigManager.Default.Diamond.GetKey);bool isSpriteNull = true;uiSlot.SetActive(isSpriteNull);uiSlot.gameObject.GetComponent<Image>().sprite = childImage.sprite;uiSlot.gameObject.GetComponent<Image>().color = Color.white;childImage.sprite = ShoesIconNormal;childImage.GetComponent<RectTransform>().sizeDelta = new Vector2(90, 90);gm.infoSys.defineValue -= 180;gm.infoSys.CombatValue -= (int)(180 * 3);currentCanvas.transform.Find("EquipInfo").GetComponent<Text>().color = Color.red;currentCanvas.transform.Find("EquipInfo").GetComponent<Text>().text = "战斗力下降" + (int)(180 * 3);currentCanvas.transform.Find("EquipInfo").gameObject.SetActive(true);StartCoroutine(WaitForThreeEquipText());FindObjectOfType<BagExample>().Refresh();FindObjectOfType<UGUICanvas>().Refresh();}}}}IEnumerator WaitForThreeEquipText(){yield return new WaitForSeconds(2);currentCanvas.transform.Find("EquipInfo").gameObject.SetActive(false);}
}

绑定脚本

运行项目

修改脚本:RightClickItem.cs

此时当鼠标悬停在装备栏时就会有设置隐藏的装备面板显示,鼠标离开后消失

RightClickItem.cs

using UnityEngine;
using UnityEngine.UI;
using UnityEngine.EventSystems;
using QFramework.Example;
using QFramework;
public class RightClickItem : MonoBehaviour, IPointerClickHandler, IPointerEnterHandler, IPointerExitHandler{Image childImage;GameManager gm;GameObject currentCanvas;GameObject PlayerNormal;GameObject PlayerUI;void Start(){gm = GameManager.Instance;childImage = transform.Find("Icon").GetComponent<Image>();currentCanvas = GameObject.Find("CurrentCanvas").gameObject;PlayerNormal = GameObject.FindWithTag("Player").gameObject;PlayerUI = GameObject.Find("PlayerUI").gameObject;}public void OnPointerClick(PointerEventData eventData){if (eventData.button == PointerEventData.InputButton.Right){#region 装备武器if (transform.Find("Icon").GetComponent<Image>().sprite != null && transform.Find("Icon").GetComponent<Image>().sprite.name == "equip02"){currentCanvas.transform.Find("EquipUIs/WeaponUI01").gameObject.SetActive(false);Transform weaponEquipPos = GameObject.FindGameObjectWithTag("WeaponEquipPos").transform;weaponEquipPos.gameObject.GetComponent<Image>().sprite = transform.Find("Icon").GetComponent<Image>().sprite;weaponEquipPos.gameObject.GetComponent<Image>().color = Color.white;weaponEquipPos.gameObject.transform.Find("Image").gameObject.SetActive(false);var slot = ItemKit.BagSlots.Find(s => s.Item != null && s.Item.GetKey == "Item_ironSword"); if (slot != null){slot.Item = null;slot.Count = 0;}transform.Find("Icon").GetComponent<Image>().sprite = null;transform.Find("Icon").GetComponent<Image>().color = new Color(45f / 255f, 45f / 255f, 45f / 255f);transform.Find("Icon").GetComponent<Image>().GetComponent<RectTransform>().sizeDelta = new Vector2(90, 90);gm.infoSys.attackValue += 500;gm.infoSys.CombatValue += (int)(500 * 1.3f);currentCanvas.transform.Find("EquipInfo").GetComponent<Text>().color = Color.green;currentCanvas.transform.Find("EquipInfo").GetComponent<Text>().text = "战斗力上升" + (int)(500 * 1.3f);currentCanvas.transform.Find("EquipInfo").gameObject.SetActive(true);FindObjectOfType<BagExample>().Refresh();}#endregion#region 装备护肩if (childImage.sprite != null && childImage.sprite.name == "equip01"){currentCanvas.transform.Find("EquipUIs/ShoulderUI01").gameObject.SetActive(false);Transform shoulderEquipPos = GameObject.FindGameObjectWithTag("ShoulderEquipPos").transform;shoulderEquipPos.gameObject.GetComponent<Image>().sprite = childImage.sprite;shoulderEquipPos.gameObject.GetComponent<Image>().color = Color.white;shoulderEquipPos.gameObject.transform.Find("Image").gameObject.SetActive(false);var slot = ItemKit.BagSlots.Find(s => s.Item != null && s.Item.GetKey == "item_iron"); if (slot != null){slot.Item = null;slot.Count = 0;}transform.Find("Icon").GetComponent<Image>().sprite = null;transform.Find("Icon").GetComponent<Image>().color = new Color(45f / 255f, 45f / 255f, 45f / 255f);transform.Find("Icon").GetComponent<Image>().GetComponent<RectTransform>().sizeDelta = new Vector2(90, 90);PlayerNormal.transform.Find("Player/Armors/Plate1/PlateSet1_Shoulders").gameObject.SetActive(true);PlayerUI.transform.Find("Player111/Armors/Plate1/PlateSet1_Shoulders").gameObject.SetActive(true);gm.infoSys.defineValue += 112;gm.infoSys.CombatValue += (int)(112 * 3.3f);currentCanvas.transform.Find("EquipInfo").GetComponent<Text>().color = Color.green;currentCanvas.transform.Find("EquipInfo").GetComponent<Text>().text = "战斗力上升" + (int)(112 * 3.3f);currentCanvas.transform.Find("EquipInfo").gameObject.SetActive(true);FindObjectOfType<BagExample>().Refresh();}#endregion#region 装备铠甲if (childImage.sprite != null && childImage.sprite.name == "equip03"){currentCanvas.transform.Find("EquipUIs/ClothesUI01").gameObject.SetActive(false);Transform clothesEquipPos = GameObject.FindGameObjectWithTag("ClothesEquipPos").transform;clothesEquipPos.gameObject.GetComponent<Image>().sprite = childImage.sprite;clothesEquipPos.gameObject.GetComponent<Image>().color = Color.white;clothesEquipPos.gameObject.transform.Find("Image").gameObject.SetActive(false);var slot = ItemKit.BagSlots.Find(s => s.Item != null && s.Item.GetKey == "item_clothes"); if (slot != null){slot.Item = null;slot.Count = 0;}transform.Find("Icon").GetComponent<Image>().sprite = null;transform.Find("Icon").GetComponent<Image>().color = new Color(45f / 255f, 45f / 255f, 45f / 255f);transform.Find("Icon").GetComponent<Image>().GetComponent<RectTransform>().sizeDelta = new Vector2(90, 90);PlayerNormal.transform.Find("Player/Armors/Plate1/PlateSet1_Chest").gameObject.SetActive(true);PlayerUI.transform.Find("Player111/Armors/Plate1/PlateSet1_Chest").gameObject.SetActive(true);PlayerNormal.transform.Find("Player/Armors/StarterClothes/Starter_Chest").gameObject.SetActive(false);PlayerUI.transform.Find("Player111/Armors/StarterClothes/Starter_Chest").gameObject.SetActive(false);gm.infoSys.defineValue += 224;gm.infoSys.CombatValue += (int)(224 * 3.6f);currentCanvas.transform.Find("EquipInfo").GetComponent<Text>().color = Color.green;currentCanvas.transform.Find("EquipInfo").GetComponent<Text>().text = "战斗力上升" + (int)(224 * 3.6f);currentCanvas.transform.Find("EquipInfo").gameObject.SetActive(true);FindObjectOfType<BagExample>().Refresh();}#endregion#region 装备裤子if (childImage.sprite != null && childImage.sprite.name == "equip04"){currentCanvas.transform.Find("EquipUIs/PantsUI01").gameObject.SetActive(false);Transform pantsEquipPos = GameObject.FindGameObjectWithTag("PantsEquipPos").transform;pantsEquipPos.gameObject.GetComponent<Image>().sprite = childImage.sprite;pantsEquipPos.gameObject.GetComponent<Image>().color = Color.white;pantsEquipPos.gameObject.transform.Find("Image").gameObject.SetActive(false);var slot = ItemKit.BagSlots.Find(s => s.Item != null && s.Item.GetKey == "Item_pants");if (slot != null){slot.Item = null;slot.Count = 0;}transform.Find("Icon").GetComponent<Image>().sprite = null;transform.Find("Icon").GetComponent<Image>().color = new Color(45f / 255f, 45f / 255f, 45f / 255f);transform.Find("Icon").GetComponent<Image>().GetComponent<RectTransform>().sizeDelta = new Vector2(90, 90);PlayerNormal.transform.Find("Player/Armors/Plate1/PlateSet1_Pants").gameObject.SetActive(true);PlayerUI.transform.Find("Player111/Armors/Plate1/PlateSet1_Pants").gameObject.SetActive(true);PlayerNormal.transform.Find("Player/Armors/StarterClothes/Starter_Pants").gameObject.SetActive(false);PlayerUI.transform.Find("Player111/Armors/StarterClothes/Starter_Pants").gameObject.SetActive(false);gm.infoSys.defineValue += 80;gm.infoSys.CombatValue += (int)(80 * 5);currentCanvas.transform.Find("EquipInfo").GetComponent<Text>().color = Color.green;currentCanvas.transform.Find("EquipInfo").GetComponent<Text>().text = "战斗力上升" + (int)(80 * 5);currentCanvas.transform.Find("EquipInfo").gameObject.SetActive(true);FindObjectOfType<BagExample>().Refresh();}#endregion#region 装备鞋子if (childImage.sprite != null && childImage.sprite.name == "equip05"){currentCanvas.transform.Find("EquipUIs/ShoesUI01").gameObject.SetActive(false);Transform shoesEquipPos = GameObject.FindGameObjectWithTag("ShoesEquipPos").transform;shoesEquipPos.gameObject.GetComponent<Image>().sprite = childImage.sprite;shoesEquipPos.gameObject.GetComponent<Image>().color = Color.white;shoesEquipPos.gameObject.transform.Find("Image").gameObject.SetActive(false);var slot = ItemKit.BagSlots.Find(s => s.Item != null && s.Item.GetKey == "item_shoes");if (slot != null){slot.Item = null;slot.Count = 0;}transform.Find("Icon").GetComponent<Image>().sprite = null;transform.Find("Icon").GetComponent<Image>().color = new Color(45f / 255f, 45f / 255f, 45f / 255f);transform.Find("Icon").GetComponent<Image>().GetComponent<RectTransform>().sizeDelta = new Vector2(90, 90);PlayerNormal.transform.Find("Player/Armors/Plate1/PlateSet1_Boots").gameObject.SetActive(true);PlayerUI.transform.Find("Player111/Armors/Plate1/PlateSet1_Boots").gameObject.SetActive(true);PlayerNormal.transform.Find("Player/Armors/StarterClothes/Starter_Boots").gameObject.SetActive(false);PlayerUI.transform.Find("Player111/Armors/StarterClothes/Starter_Boots").gameObject.SetActive(false);gm.infoSys.defineValue += 180;gm.infoSys.CombatValue += (int)(180 * 3);currentCanvas.transform.Find("EquipInfo").GetComponent<Text>().color = Color.green;currentCanvas.transform.Find("EquipInfo").GetComponent<Text>().text = "战斗力上升" + (int)(180 * 3);currentCanvas.transform.Find("EquipInfo").gameObject.SetActive(true);FindObjectOfType<BagExample>().Refresh();}#endregion#region 装备头盔if (childImage.sprite != null && childImage.sprite.name == "equip06"){currentCanvas.transform.Find("EquipUIs/HatUI01").gameObject.SetActive(false);Transform hatEquipPos = GameObject.FindGameObjectWithTag("HatEquipPos").transform;hatEquipPos.gameObject.GetComponent<Image>().sprite = childImage.sprite;hatEquipPos.gameObject.GetComponent<Image>().color = Color.white;hatEquipPos.gameObject.transform.Find("Image").gameObject.SetActive(false);var slot = ItemKit.BagSlots.Find(s => s.Item != null && s.Item.GetKey == "item_hat");if (slot != null){slot.Item = null;slot.Count = 0;}transform.Find("Icon").GetComponent<Image>().sprite = null;transform.Find("Icon").GetComponent<Image>().color = new Color(45f / 255f, 45f / 255f, 45f / 255f);transform.Find("Icon").GetComponent<Image>().GetComponent<RectTransform>().sizeDelta = new Vector2(90, 90);PlayerNormal.transform.Find("Player/Armors/Plate1/PlateSet1_Helmet").gameObject.SetActive(true);PlayerUI.transform.Find("Player111/Armors/Plate1/PlateSet1_Helmet").gameObject.SetActive(true);PlayerNormal.transform.Find("Player/Armors/Plate1/PlateSet1_Gloves").gameObject.SetActive(true);PlayerUI.transform.Find("Player111/Armors/Plate1/PlateSet1_Gloves").gameObject.SetActive(true);gm.infoSys.defineValue += 200;gm.infoSys.CombatValue += (int)(200 * 3);currentCanvas.transform.Find("EquipInfo").GetComponent<Text>().color = Color.green;currentCanvas.transform.Find("EquipInfo").GetComponent<Text>().text = "战斗力上升" + (int)(200 * 3);currentCanvas.transform.Find("EquipInfo").gameObject.SetActive(true);FindObjectOfType<BagExample>().Refresh();}#endregion}}public void OnPointerEnter(PointerEventData eventData){#region 装备武器if (childImage.sprite != null && childImage.sprite.name == "equip02"){currentCanvas.transform.Find("EquipUIs/WeaponUI01").gameObject.SetActive(true);}#endregion#region 装备护肩if (childImage.sprite != null && childImage.sprite.name == "equip01"){currentCanvas.transform.Find("EquipUIs/ShoulderUI01").gameObject.SetActive(true);}#endregion#region 装备铠甲if (childImage.sprite != null && childImage.sprite.name == "equip03"){currentCanvas.transform.Find("EquipUIs/ClothesUI01").gameObject.SetActive(true);}#endregion#region 装备裤子if (childImage.sprite != null && childImage.sprite.name == "equip04"){currentCanvas.transform.Find("EquipUIs/PantsUI01").gameObject.SetActive(true);}#endregion#region 装备鞋子if (childImage.sprite != null && childImage.sprite.name == "equip05"){currentCanvas.transform.Find("EquipUIs/ShoesUI01").gameObject.SetActive(true);}#endregion#region 装备头盔if (childImage.sprite != null && childImage.sprite.name == "equip06"){currentCanvas.transform.Find("EquipUIs/HatUI01").gameObject.SetActive(true);}#endregion}public void OnPointerExit(PointerEventData eventData){#region 装备武器if (childImage.sprite != null && childImage.sprite.name == "equip02"){currentCanvas.transform.Find("EquipUIs/WeaponUI01").gameObject.SetActive(false);}#endregion#region 装备护肩if (childImage.sprite != null && childImage.sprite.name == "equip01"){currentCanvas.transform.Find("EquipUIs/ShoulderUI01").gameObject.SetActive(false);}#endregion#region 装备铠甲if (childImage.sprite != null && childImage.sprite.name == "equip03"){currentCanvas.transform.Find("EquipUIs/ClothesUI01").gameObject.SetActive(false);}#endregion#region 装备裤子if (childImage.sprite != null && childImage.sprite.name == "equip04"){currentCanvas.transform.Find("EquipUIs/PantsUI01").gameObject.SetActive(false);}#endregion#region 装备鞋子if (childImage.sprite != null && childImage.sprite.name == "equip05"){currentCanvas.transform.Find("EquipUIs/ShoesUI01").gameObject.SetActive(false);}#endregion#region 装备头盔if (childImage.sprite != null && childImage.sprite.name == "equip06"){currentCanvas.transform.Find("EquipUIs/HatUI01").gameObject.SetActive(false);}#endregion}
}

运行项目 

接下来的文章内容:

1.六件装备穿戴齐全后的炫光效果

2.窗口可拖拽脚本

3.点击名称寻找地点功能

4.隐藏怪物的生成

5.怪物I攻击范围内的主动攻击

6.掉落坐骑蛋的获取

7.异步传送转换场景

以及开放回合制、坐骑系统、宠物系统、背包系统、神炼系统、商城系统、Boss的目标跟随任务导航系统以及UI播放3D动画效果等等。

具体项目运行效果请关注water1024的b站视频项目演示《破碎纪元》

【Unity回合2.5D】破碎纪元_单机游戏热门视频 (bilibili.com)icon-default.png?t=O83Ahttps://www.bilibili.com/video/BV1rZY4e9Ebs/?spm_id_from=333.999.0.0&vd_source=547091a95b03acfa8e8a9e46ef499cd6

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

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

相关文章

多线程计算π

1、实现单线程计算π 2、使用任务分解方法,使用2线程,并行计算π 3、使用数据分解方法,使用2线程,并行计算π 注意:在循环中使用以上计算π的公式,n取值为1到Int.Max 问题1: import java.lang.*;public class Thread1 extends Thread{@Overridepublic void run(){l…

个性化大语言模型:PPlug——让AI更懂你

在当今数字化转型的时代&#xff0c;大型语言模型&#xff08;LLMs&#xff09;已经成为了不可或缺的工具&#xff0c;它们在自然语言理解、生成和推理方面展现了非凡的能力。然而&#xff0c;这些模型普遍采用的是“一刀切”的方式&#xff0c;即对于相同的输入给予所有用户相…

HDFS分布式文件系统01-HDFS架构与SHELL操作

HDFS分布式文件系统 学习目标第一课时知识点1-文件系统的分类单机文件系统网络文件系统分布式文件系统 知识点2-HDFS架构知识点3-HDFS的特点知识点4-HDFS的文件读写流程知识点5-HDFS的健壮性 第二课时知识点1-HDFS的Shell介绍HDFS Shell的语法格式如下。HDFS Shell客户端命令中…

db2 存储过程 if的例子及call调用方法

if 需要 end if; CREATE PROCEDURE UPDATE_SAL (IN empNum CHAR(6), OUT rating SMALLINT)LANGUAGE SQLBEGINIF rating 1 THENUPDATE employee SET salary salary * 1.10, bonus 1000 WHERE empno empNum;ELSEIF rating 2 THENUPDATE employee SET salary salary * …

windows电脑C盘内存爆满怎么办?

目录 1. 下载SpaceSniffer2. 运行程序&#xff0c;扫描C盘3. 寻找可删除的文件 为了节省C盘的内存&#xff0c;将大部分的软件尽量都安装在C盘以外的磁盘中&#xff0c;但是在电脑的使用过程中还是会发现C盘越来越少&#xff0c;这是因为很多软件会默认将数据文件夹&#xff08…

【算法】DFS 系列之 穷举/暴搜/深搜/回溯/剪枝(上篇)

【ps】本篇有 9 道 leetcode OJ。 目录 一、算法简介 二、相关例题 1&#xff09;全排列 .1- 题目解析 .2- 代码编写 2&#xff09;子集 .1- 题目解析 .2- 代码编写 3&#xff09;找出所有子集的异或总和再求和 .1- 题目解析 .2- 代码编写 4&#xff09;全排列 II…

Spring Boot 实战:使用观察者模式实现实时库存管理

在现代软件开发中&#xff0c;实时数据处理和响应式编程变得越来越重要。库存管理系统是一个典型的需要实时更新的应用场景&#xff0c;当库存发生变化时&#xff0c;系统应该能够立即通知所有相关的组件或服务。在这个实战教程中&#xff0c;我们将展示如何使用Spring Boot结合…

​​三SSH

ssh密钥对登录原理 &#xff1a;首先&#xff0c;客户端事先生成一对密钥&#xff0c;并将公钥保存在服务器上的授权文件中。接下来&#xff0c;客户端不用密码&#xff0c;而是用密钥对来验证身份。客户端用服务器的公钥来加密自己的公钥&#xff0c;然后把加密后的信息发送给…

前端面试题(八)

39. 现代前端框架 当前流行的前端框架有哪些&#xff1f; React&#xff1a;由 Facebook 开发的一个用于构建用户界面的 JavaScript 库&#xff0c;采用组件化开发&#xff0c;支持虚拟 DOM 和单向数据流。 主要特性&#xff1a; 组件复用&#xff1a;将 UI 分割成独立的、可复…

html,js,react三种方法编写helloworld理解virtual dom

学习任何一个新语言&#xff0c;好像都从helloworld开始。&#xff1a;&#xff09;。 html helloworld 静态hello world <!DOCTYPE html> <html> <head><title>Hello World</title> </head> <body><p>Hello World</p&g…

数字化转型:开启未来发展新引擎

在当今飞速发展的时代&#xff0c;数字化转型已成为企业、组织乃至整个社会发展的关键趋势。 信息技术的迅猛发展&#xff0c;如互联网、大数据、人工智能等&#xff0c;为数字化转型提供了强大支撑。市场竞争的加剧&#xff0c;也促使企业不断寻求提升竞争力的方法&#xff0c…

OpenCV图像文件读写(6)将图像数据写入文件的函数imwrite()的使用

操作系统&#xff1a;ubuntu22.04 OpenCV版本&#xff1a;OpenCV4.9 IDE:Visual Studio Code 编程语言&#xff1a;C11 算法描述 将图像保存到指定的文件中。 函数 imwrite 将图像保存到指定的文件中。图像格式是根据文件名扩展名选择的&#xff08;参见 cv::imread 获取扩展…

利用git将项目上传到github

采用git而不是在pycharm中共享的原因&#xff1a;可能会出现上图报错 目录 1、创建github仓库2、在 git bash 中初始化Git仓库&#xff0c;添加文件&#xff0c;上传代码 1、创建github仓库 2、在 git bash 中初始化Git仓库&#xff0c;添加文件&#xff0c;上传代码

[Redis] 渐进式遍历+使用jedis操作Redis+使用Spring操作Redis

&#x1f338;个人主页:https://blog.csdn.net/2301_80050796?spm1000.2115.3001.5343 &#x1f3f5;️热门专栏: &#x1f9ca; Java基本语法(97平均质量分)https://blog.csdn.net/2301_80050796/category_12615970.html?spm1001.2014.3001.5482 &#x1f355; Collection与…

LabVIEW提高开发效率技巧----利用第三方库和工具

LabVIEW开发不仅依赖于自身强大的图形化编程能力&#xff0c;还得益于其庞大的用户社区和丰富的第三方库。这些工具和库能够帮助开发者快速解决问题&#xff0c;提升开发效率&#xff0c;避免从头开始编写代码。 1. LabVIEW工具网络&#xff08;NI Tools Network&#xff09; …

从准备面试八股文,感悟到技术的本质

工作前几年听说过&#xff0c;大学最重要的几门课其实是数据结构和算法、操作系统、计算机组成原理、计算机网络。 初听时不以为然&#xff0c;感觉没什么用。 近期准备面试八股文得到了一些感悟。这句话随着工作年限和对程序的理解越来越深入&#xff0c;含金量越来越高。 最…

FFmpeg源码:avio_skip函数分析

AVIOContext结构体和其相关的函数分析&#xff1a; FFmpeg源码&#xff1a;avio_r8、avio_rl16、avio_rl24、avio_rl32、avio_rl64函数分析 FFmpeg源码&#xff1a;read_packet_wrapper、fill_buffer函数分析 FFmpeg源码&#xff1a;avio_read函数分析 FFmpeg源码&#xff…

c# Expression<Func<T, T>>转成实体

将 Expression<Func<T, T>>转成实体T public class MyEntity {public int Age { get; set; }public string Name { get; set; } } public static class ExpressionExtension{#region 表达式类型字典/// <summary>/// 表达式类型字典/// </summary>priv…

DVWA-File Inclusion(文件包含)渗透测试

概念&#xff1a; 漏洞产生原因&#xff1a; 主要是由于开发人员没有对用户输入的文件路径进行严格的过滤和验证。例如&#xff0c;如果一个 Web 应用程序接受用户输入的文件路径&#xff0c;然后使用这个路径进行文件包含&#xff0c;而没有对用户输入进行任何检查&#xff0c…

传输层协议 --- UDP

序言 在之前的文章 Socket 编程 中&#xff0c;我们只是简单的知道了怎么利用 UDP协议 或者是 TCP协议 来发送我们的数据&#xff0c;并且我们还知道 UDP 是不可靠的&#xff0c;TCP 是可靠的。但这是为什么呢&#xff1f;底层的构造和策略决定他们的属性&#xff01;这篇文章中…