当前位置:网站首页>C# 谁改了我的代码
C# 谁改了我的代码
2022-08-04 14:48:00 【林德熙】
本文告诉大家一个特殊的做法,可以修改一个字符串常量
我们来写一个简单的程序,把一个常量字符串输出
private const string str = "lindexi";
static void Main(string[] args)
{
Foo();
Console.WriteLine(str);
}
其中的 Foo 是其他的函数,大家可以猜到输出是 lindexi ,但是,实际上把Foo调用函数添加之后,输出是 Lindexi 被大写了。那么这时 Foo 做了什么?
Foo 做的就是 C# 字符串首字符大写
public static unsafe void Foo()
{
fixed (char* ptr = str)
{
*ptr = char.ToUpper(*ptr);
}
}
虽然出现了问题,但是找到问题很简单,如果这时需要做一个安全有关的。让别人看到源代码也不知道怎么使用,那么就可以使用这个科技,下面就是显示技术的时候
我把 Foo 做一些修改,把 str 变量去掉,这样大家就难以通过搜索变量引用找到了这个函数。但是我在其他的某个地方使用了这个常量字符串,于是就把上面的 str 修改为 “lindexi” 。大家也许会想,这是两个变量,对他做什么修改也不会对之前的 str 有什么影响。实际上,请跑一下下面的代码。
public static unsafe void Foo()
{
fixed (char* ptr = "lindexi")
{
*ptr = char.ToUpper(*ptr);
}
}
这时输出 str 结果是 Lindexi ,因为编译器把相同的常量视为同一个地址,这样修改一个地方的常量就可以修改其他地方的。所以可以写的是一个常量,实际上这个常量在另一个地方被修改。
如果我代码很多,在某个地方使用了反射,反射一个方法,这个方法是修改一个常量的值,常量是写自己写的,没有引用。这时可以发现代码执行就可以更改之前的字符串值。实际上不只字符串,其它的常量也可以修改。多使用这些技术,可以让看代码的人成为强大的杀人狂。
这个方法是不推荐在一般情况使用,因为谁都不能说没有其他地方使用一样的字符串。
边栏推荐
- 【北亚数据恢复】IBM System Storage存储lvm信息丢失数据恢复方案
- [The Art of Hardware Architecture] Study Notes (1) The World of Metastability
- leetcode: 212. Word Search II
- 在腾讯,我的试用期总结!
- Sum of four squares, laser bombs
- CF1527D MEX Tree(mex&树&容斥)
- 如何和程序员谈恋爱
- NPDP|作为产品经理,如何快速提升自身业务素养?
- 指数族分布与最大熵
- Technology sharing | Description of the electronic fence function in the integrated dispatching system
猜你喜欢
随机推荐
token 过期后,如何自动续期?
[Beiya data recovery] IBM System Storage storage lvm information lost data recovery solution
leetcode: 241. Designing precedence for arithmetic expressions
Basic Introduction for PLSQL
饿了么智能头盔专利获授权,进一步提升骑手安全保障
Find My Technology | Prevent your pet from getting lost, Apple Find My technology can help you
Technology sharing | Description of the electronic fence function in the integrated dispatching system
【问题解决】QT更新组件出现 “要继续此操作,至少需要一个有效且已启用的储存库”
Notes for xpath getting node with namespace
Google plug-in. Download contents file is automatically deleted after solution
leetcode:255 验证前序遍历序列二叉搜索树
Find My技术|防止你的宠物跑丢,苹果Find My技术可以帮到你
Theory 1: Deep Learning - Detailed Explanation of the LetNet Model
CCF GLCC officially opened | Kyushu Cloud open source experts bring generous bonuses to help universities promote open source
CF1527D MEX Tree (mex & tree & inclusive)
Oracle 数据库用户创建、重启、导入导出
G. Mountaineering Squad (violence & dfs)
用于X射线聚焦的复合折射透镜
Chinese valentine's day, of course, to learn SQL optimization better leave work early to find objects
代码随想录笔记_动态规划_1049最后一块石头的重量II