惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Recorded Future
Recorded Future
Microsoft Security Blog
Microsoft Security Blog
Recent Commits to openclaw:main
Recent Commits to openclaw:main
The Register - Security
The Register - Security
The GitHub Blog
The GitHub Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
人人都是产品经理
人人都是产品经理
量子位
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
有赞技术团队
有赞技术团队
Stack Overflow Blog
Stack Overflow Blog
H
Help Net Security
Apple Machine Learning Research
Apple Machine Learning Research
The Cloudflare Blog
B
Blog RSS Feed
小众软件
小众软件
博客园 - 叶小钗
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园 - 聂微东
博客园_首页
B
Blog
雷峰网
雷峰网
S
SegmentFault 最新的问题
N
Netflix TechBlog - Medium
D
Docker
博客园 - 司徒正美
博客园 - 【当耐特】
大猫的无限游戏
大猫的无限游戏
博客园 - Franky
MongoDB | Blog
MongoDB | Blog
U
Unit 42
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
腾讯CDC
F
Fortinet All Blogs
aimingoo的专栏
aimingoo的专栏
Martin Fowler
Martin Fowler
Jina AI
Jina AI
WordPress大学
WordPress大学
D
DataBreaches.Net
V
V2EX
V
Visual Studio Blog
Know Your Adversary
Know Your Adversary
P
Privacy & Cybersecurity Law Blog
F
Full Disclosure
G
Google Developers Blog
Engineering at Meta
Engineering at Meta
The Hacker News
The Hacker News
Security Archives - TechRepublic
Security Archives - TechRepublic
IT之家
IT之家
P
Privacy International News Feed

博客园 - liujun

几本敏捷书籍 数据不一致带来的障碍 微软将在SQL server 2008加入对Spatial的支持 Bentley GeoSpatial平台下一版本要发布的功能 使用MySQL的商业障碍 使用Oracle网络数据模型的缺点 拓扑模型研究 Scrum notes 空间数据库效率研究 在VS2005的Signing设置中不能创建新的key文件 对昨天传的gps测试程序小做了些修改 自己去年写的GPS小程序 利用MicroStation的高效绘图和建模能力给Google earth添加数据 MicroStation开发草稿 skype设置导致IIS不能启动的原因 使用智能指针封装类使用DOM 特权模式 EVC中使用try/catch异常处理的麻烦 创建ListView控件
windows mobile程序性能考虑
liujun · 2005-05-22 · via 博客园 - liujun

由于CPU架构体系不同,所以不能把ARM跟Pentium比较。对于运行在16位内存总线的系统。我们尽可能使用字节双字节类型,而且尽量使用无符号数据类型。尽量不要使用浮点数运算。在做乘法运算时,要考虑中间值的长度 ,比如两个32位的整数相乘,中间结果应该是64位。不要使用除法,使用位移和乘法来代替。例如a/b可以写为a*(1/b),然后可以使用一个一维查找表来处理1/x。