- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
关闭。这个问题不满足Stack Overflow guidelines .它目前不接受答案。
想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。
3年前关闭。
Improve this question
我发现 Xamarin 声称他们在 Android 上的 Mono 实现和他们的 C# 编译应用程序比 Java 代码更快。有没有人在不同的 Android 平台上对非常相似的 Java 和 C# 代码执行实际基准测试以验证此类声明,可以发布代码和结果吗?
2013 年 6 月 18 日添加
由于没有答案并且找不到其他人完成的此类基准测试,因此决定进行自己的测试。不幸的是,我的问题仍然“锁定”,因此我无法将此作为答案发布,只能编辑问题。请投票重新打开这个问题。对于 C#,我使用了 Xamarin.Android 版本。 4.7.09001(测试版)。源代码,我用于测试和编译APK包的所有数据都在GitHub上:
java :https://github.com/gregko/TtsSetup_Java
C#:https://github.com/gregko/TtsSetup_C_sharp
如果有人想在其他设备或模拟器上重复我的测试,我也有兴趣了解结果。
我的测试结果
我将我的句子提取器类移植到 C#(来自我的 @Voice Aloud Reader 应用程序),并对 10 个英语、俄语、法语、波兰语和捷克语的 HTML 文件进行了一些测试。每次运行对所有 10 个文件执行 5 次,下面发布了 3 个不同设备和一个模拟器的总时间。我只测试了“发布”版本,没有启用调试。
HTC Nexus One Android 2.3.7 (API 10) - CyanogenMod ROM
Java:总计时间(5 次运行):12361 毫秒,文件读取总计:13304 毫秒
C#:总计时间(5 次运行):17504 毫秒,文件读取总计:17956 毫秒
三星 Galaxy S2 SGH-I777 (Android 4.0.4, API 15) - CyanogenMod ROM
Java:总计时间(5 次运行):8947 毫秒,文件读取总计:9186 毫秒
C#:总计时间(5 次运行):9884 毫秒,文件读取总计:10247 毫秒
三星 GT-N7100 (Android 4.1.1 JellyBean, API 16) - 三星 ROM
Java:总计时间(5 次运行):9742 毫秒,文件读取总计:10111 毫秒
C#:总计时间(5 次运行):10459 毫秒,文件读取总计:10696 毫秒
模拟器 - 英特尔(Android 4.2,API 17)
Java:总计时间(5 次运行):2699 毫秒,文件读取总计:3127 毫秒
C#:总计时间(5 次运行):2049 毫秒,文件读取总计:2182 毫秒
模拟器 - 英特尔(Android 2.3.7,API 10)
Java:总计时间(5 次运行):2992 毫秒,文件读取总计:3591 毫秒
C#:总计时间(5 次运行):2049 毫秒,文件读取总计:2257 毫秒
模拟器 - Arm(Android 4.0.4,API 15)
Java:总计时间(5 次运行):41751 毫秒,文件读取总计:43866 毫秒
C#:总计时间(5 次运行):44136 毫秒,文件读取总计:45109 毫秒
简要讨论
我的测试代码主要包含文本解析、替换和正则表达式搜索,也许对于其他代码(例如更多数字运算),结果会有所不同。在配备 ARM 处理器的所有设备上,Java 的性能优于 Xamarin C# 代码。最大的区别是在 Android 2.3 下,其中 C# 代码运行速度约为Java 速度的 70%。
在 Intel 模拟器(使用 Intel HAX 技术,模拟器在快速虚拟模式下运行)上,Xamarin C# 代码比 Java 运行我的示例代码快得多 - 大约快 1.35 倍。也许 Mono 虚拟机代码和库在 Intel 上比在 ARM 上优化得更好?
编辑 2013 年 7 月 8 日
我刚刚安装了 Genymotion Android 模拟器,它在 Oracle VirtualBox 中运行,并且这个模拟器再次使用原生 Intel 处理器,而不是模拟 ARM 处理器。与英特尔 HAX 仿真器一样,C# 再次在这里运行得更快。这是我的结果:
Genymotion 模拟器 - 英特尔(Android 4.1.1,API 16)
Java: Grand total time (5 runs): 2069 ms, with file reading total: 2248 ms
C#: Grand total time (5 runs): 1543 ms, with file reading total: 1642 ms
Java: Grand total time (5 runs): 8103 ms, with file reading total: 8569 ms
C#: Grand total time (5 runs): 7951 ms, with file reading total: 8161 ms
Java: Grand total time (5 runs): 9675 ms, with file reading total: 10028 ms
C#: Grand total time (5 runs): 9911 ms, with file reading total: 10104 ms
Java: Grand total time (5 runs): 7153 ms, with file reading total: 7459 ms
C#: Grand total time (5 runs): 6906 ms, with file reading total: 7070 ms
Java: Grand total time (5 runs): 12187 ms, with file reading total: 13200 ms
Xamarin C#: Grand total time (5 runs): 13935 ms, with file reading total: 14465 ms
Dot42 C#: Grand total time (5 runs): 26000 ms, with file reading total: 27168 ms
Java: Grand total time (5 runs): 6895 ms, with file reading total: 7275 ms
Xamarin C#: Grand total time (5 runs): 6466 ms, with file reading total: 6720 ms
Dot42 C#: Grand total time (5 runs): 11185 ms, with file reading total: 11843 ms
Java: Grand total time (5 runs): 2389 ms, with file reading total: 2770 ms
Xamarin C#: Grand total time (5 runs): 1748 ms, with file reading total: 1933 ms
Dot42 C#: Grand total time (5 runs): 5150 ms, with file reading total: 5459 ms
7/30/2013 - Dot42 tests with more Java classes in Dot42 C#
Intel emulator, Android 4.2
Dot42, Greg's Code using StringBuilder.Replace() (as in Xamarin):
Grand total time (5 runs): 3646 ms, with file reading total: 3830 msDot42, Greg's Code using String.Replace() (as in Java and Robert's code):
Grand total time (5 runs): 3027 ms, with file reading total: 3206 msDot42, Robert's Code:
Grand total time (5 runs): 1781 ms, with file reading total: 1999 msXamarin:
Grand total time (5 runs): 1373 ms, with file reading total: 1505 msJava:
Grand total time (5 runs): 1841 ms, with file reading total: 2044 msARM, Samsung Galaxy Note 2, power saving off, Android 4.1.1
Dot42, Greg's Code using StringBuilder.Replace() (as in Xamarin):
Grand total time (5 runs): 10875 ms, with file reading total: 11280 msDot42, Greg's Code using String.Replace() (as in Java and Robert's code):
Grand total time (5 runs): 9710 ms, with file reading total: 10097 msDot42, Robert's Code:
Grand total time (5 runs): 6279 ms, with file reading total: 6622 msXamarin:
Grand total time (5 runs): 6201 ms, with file reading total: 6476 msJava:
Grand total time (5 runs): 7141 ms, with file reading total: 7479 ms
最佳答案
是的,Xamarin 的 Mono 虚拟机比 Android 中使用的 Google 的 Dalvik 更令人印象深刻。我已经用 HTC Flyer 和 Acer Iconia Tab 平板电脑对其进行了测试,通过 Mono 对 Android 的 C# 端口与 Java Dalvik 进行了基准测试,Android 的 C# 实现很好,真正击败了基于 Java 的 Dalvik。
关于c# - 有没有人有比较用 Xamarin C# 和 Java 编写的 Android 应用程序的性能的基准(代码和结果)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17134522/
我想创建一个 Python 基准测试列表。现在我只找到了 this 中的标准基准测试问题和一些来自 Computer Language Benchmarks Game . Python 还有其他基准测
我正在使用 apache 提供的基准文件 TestDFSIO 测试我的 hadoop 配置。我正在根据本教程(资源 1)运行它: http://www.michael-noll.com/blog/20
我刚刚安装了 Ruby 企业版,想对我的系统 Ruby 运行一些基准测试。是否有我应该实现的规范基准测试? 最佳答案 最有趣最深入Ruby benchmarks Antonio Cangiano 的系
我已经生成了基准,用于比较使用 ffmpeg 工具缩小视频文件 (mp4) 的两种方法。 基准以这种格式记录: x.mp4 Output_Resolution : 360p Method : A re
我正在使用 codeigniter 制作一个网站。 如果用户在他的评论中写入 {memory_usage} 2.75MB 将显示给他。它不会给 codeigniter 编写的代码带来安全漏洞吗?有什么
我正在尝试对 XSLT 的两个版本进行基准测试。目前我使用 Visual Studio 进行调试,因为从 .NET 组件调用的 xml 转换。 VS 2010 是我用于开发的 IDE。 我得到的唯一线
我想知道如何测量每个节点的内存带宽(流基准)。我的这个程序仅在一个节点上进行测量,进程和线程的数量如下: MPI_Comm_size(MPI_COMM_WORLD, &numranks); MPI_C
我正在关注 performance test Dapper 社区创建的。 目前,我在运行测试 10000 次后得到以下信息: EF 5 = 21595 毫秒 ADO.NET = 52183 毫秒 小巧
为了测量 CPU 的峰值 FLOPS 性能,我编写了一个小的 C++ 程序。但是测量结果给我的结果比我的 CPU 的理论峰值 FLOPS 大。怎么了? 这是我写的代码: #include #incl
有没有办法在 JUnit 测试套件中放置简单的开始/停止计时? 当我创建一个测试套件类时,它看起来像这样,我可以运行它。但是我怎么能在这里放一个简单的长开始时间变量来显示所有测试运行了多长时间? pu
我想测试MySQL数据库的InnoDB和MyRock引擎之间的高强度写入。为此,我使用 sysbench 进行基准测试。我的要求是: 多线程并发写入同一张表。 支持批量插入(每次插入事务都会插入大量记
我正在尝试构建一个 Nodejs Web 应用程序。当我添加更多代码时,最好有一种方法来测试此类更改对性能的影响,如果可能的话,以及我的应用程序在哪些方面花费最多时间。我目前正在使用 mocha 作为
我希望编写一个简单的每秒帧数动画基准 Javascript 实用程序。 FPS 在这里可能是一个模糊的术语,但理想情况下,它可以让我更准确地比较和衡量不同动画 (CSS3/canvas/webgl)
我是 Python 新手。这是我的第一种解释语言。到目前为止,我曾经学习过Java。因此,当 Java 程序第一次运行时,它的执行速度比下一次要慢。reasi 正在缓存。 import time de
我在 Ubuntu 虚拟机中使用 Apache 2.4.2。我用它来加载测试,向某些 HTTPS url 发送请求。失败请求数为零。但是我的请求都无法真正处理(已经在数据库中查找)。使用相同的 url
(我不确定这是否应该在 https://softwareengineering.stackexchange.com/ 上,如果您认为是,请评论) 我即将为我的学士论文创建 WebGL 实现的基准。我不
编辑: Clojure 基准测试已达到 the Benchmarks Game 。 我已经制作了这个问题社区 wiki 并邀请其他人保持更新。 有人知道 Clojure 的性能基准吗? 我自己做了一些
关注 this benchmark BSON 需要更多的磁盘空间和时间来创建、序列化、反序列化和遍历所有元素。 BSON 的一大优势是,它的遍历速度要快得多。那么这个基准有什么问题呢? 最佳答案 你的
我正在 NextFlow 上执行分散-聚集操作。 它看起来像下面这样: reads = PATH+"test_1.fq" outdir = "results" split_read_ch = chan
我无法让apache benchmark与我的网站配合使用。每当我发出此命令时 ab https://example.com/ 我会得到这个输出错误: This is ApacheBench, Ver
我是一名优秀的程序员,十分优秀!