为什么iOS模拟器比Android快得多?

我知道这可能会被关闭甚至被投票,但我还是想对它进行一次拍摄.为什么iOS的模拟器比 Android更快?我在功能较差的Mac上使用iOS模拟器,它比Android的模拟器更平滑,Android模拟器运行在比Mac更大规格的笔记本电脑上.

我读到的地方是因为Android会模仿ARM,而iOS会在OS X中本地运行它.那么为什么Android模拟器不仅仅是像iOS一样直接运行呢?我知道没人能真正回答这个问题但仍然如此.我希望有人能够对这个相当令人沮丧的问题有所了解.

解决方法

因为iOS“模拟器”不是模拟器……它是一个模拟器.

this answer开始:

the difference between emulators and simulators is that emulators mimic the software and hardware environments found on actual devices. Simulators,on the other hand,only mimic the software environment; they otherwise have access to all of the host system’s hardware resources such as disk space,memory and processor speed.

相关文章

UITabBarController 是 iOS 中用于管理和显示选项卡界面的一...
UITableView的重用机制避免了频繁创建和销毁单元格的开销,使...
Objective-C中,类的实例变量(instance variables)和属性(...
从内存管理的角度来看,block可以作为方法的传入参数是因为b...
WKWebView 是 iOS 开发中用于显示网页内容的组件,它是在 iO...
OC中常用的多线程编程技术: 1. NSThread NSThread是Objecti...