光亮美女

文章
5
资源
0
加入时间
2年10月21天

170615_大端与小端、memcpy、字节数组、高低字节

今天对于大小端、高低字节基础的东西犯迷糊了,今天记下这篇博客,把这些知识捋清楚。高低字节:比如像 int t=0x1234785678,最左边的就是最高字节0x12,最右边为最低字节0x78大小端:仅对大于1个字节的数据类型,像char就不存在大小端问题,大端就是高字节存入低地址,小端就是低字节存入低地址。(一般像windows是小端,小端居多)int t=0x1234785678大端存储:地址...

EF多表外键关联,新增数据的时候外键错误

报错:(外键FK_Base_RoleRight_Base_Role约束错误,要求在dbo.Base_Roles表中的列名"Roles_ID"的值存在)The INSERT statement conflicted with the FOREIGN KEY constraint “FK_Base_RoleRight_Base_Roles”. The conflict occurred in database “SAM_DB”, table “dbo.Base_Roles”, c

android o android8.0 startforegroundservice startforegroundservice() did not then call service.star

解决context.startforegroundservice() did not then call service.startforeground()原因:Android 8.0 系统不允许后台应用创建后台服务,故只能使用Context.startForegroundService()启动服务 创建服务后,应用必须在5秒内调用该服务的startForeground()显示一条可见通知,声明有服务在挂着,不然系统会停止服务 + ANR 套餐送上。 Notification 要加 Chan..