android开发使用c+_如何在Android项目中开始使用C ++代码

android开发使用c+

by Onur Tuna

通过Onur Tuna

如何在Android项目中开始使用C ++代码 (How to start using C++ code in your Android project)

Last year I gave a talk at the GDG DevFest in Ankara, Turkey. I have been planning to share that talk here ever since. Now that I’m a PhD candidate and have a bit more time, I’m putting the post down here.

去年,我在土耳其安卡拉的GDG DevFest上发表了演讲。 从那时起,我一直计划在这里分享这一话题。 现在,我是一名博士候选人,并且还有更多时间,现在我将其放在这里。

If you would like to get the presentation, it’s available on my drive.

如果您想获得演示文稿,可以在我的驱动器上找到 。

暖身 (Warm Up)

I would like to start by explaining the build process of an app in Android. Because you need to know some basic internal stuff, this topic is somewhat technical.

我首先要解释一下Android应用程序的构建过程。 因为您需要了解一些基本的内部知识,所以本主题有些技术性。

You don’t need to know everything shown in the image above — but it’s a good reference.

您不需要知道上图中显示的所有内容,但这是一个很好的参考。

Now say that you write an application for Android using Java. You’re going to have:

现在说您使用Java编写了一个Android应用程序。 您将拥有:

  • the source code for that application

    该应用程序的源代码
  • some sort of resource files (like images or xml files for the arrangement of the GUI)

    某种资源文件(例如用于安排GUI的图像或xml文件)
  • and perhaps some AIDL files, which are Java interfaces that make processes talk to each other.

    也许还有一些AIDL文件,它们是使进程相互通信的Java接口。

You’re probably also going to use additional libraries and their related files in your project.

您可能还会在项目中使用其他库及其相关文件。

When building a working app, you first compile those source codes together. A compiler will yield a DEX file which then can be read by a virtual machine. This machine-readable file and some additional information about the app will be packaged together by a package manager. The final package — called an APK package — is the final app.

在构建可运行的应用程序时,首先需要将这些源代码一起编译。 编译器将生成一个DEX文件,然后该文件可以由虚拟机读取。 该机器可读文件以及有关该应用的一些其他信息将由程序包管理器打包在一起。 最终程序包(称为APK程序包)是最终应用程序。

This is the build process of an Android package in the simplest terms.

这是最简单的Android程序包的构建过程。

Android执行时间 (Android Run Time)

Now let’s talk about the run time stuff. You have an app, and when it starts running it’s read by a machine. Android has two kinds of virtual machines to run an app. I won’t introduce the old one, called Dalvik, as today most Android devices run a virtual machine called Android Run Time, ART — so that’s what we’ll talk about here.

现在让我们谈谈运行时的东西。 您有一个应用程序,当它开始运行时,它会被机器读取。 Android有两种运行应用程序的虚拟机。 我不会介绍旧的Dalvik,因为今天大多数Android设备都运行一个名为Android Run Time,ART的虚拟机-因此我们将在这里讨论。

ART is an ahead-of-time (AOT) virtual machine. So, what does that mean? Let me explain. When your app starts running for the first time, its code is compiled to machine code which can then be read by the real machine. This means that the code isn’t compiled part by part at run time. This enhances the install time of the app while reducing the battery usage.

ART是一种提前(AOT)虚拟机。 那是什么意思呢? 让我解释。 当您的应用程序首次开始运行时,其代码将编译为机器代码,然后由真实机器读取。 这意味着在运行时不会部分地编译代码。 这可以延长应用程序的安装时间,同时减少电池消耗。

In sum, you write an app then compile it to binary code which is read by the ART. Then the ART converts that code to native code which can be read by the device itself.

总之,您编写一个应用程序,然后将其编译为由ART读取的二进制代码。 然后,ART将该代码转换为可由设备本身读取的本机代码。

艺术与C ++ (ART & C++)

What if you write an Android app using Java but there is some C++ code that is in contact with the Java? What’s the effect of that C++ code on your app’s build process or run time? Not too much.

如果您使用Java编写了一个Android应用程序,但是有一些C ++代码与Java联系该怎么办? 该C ++代码对您应用的生成过程或运行时间有什么影响? 不会太多

The C++ code is compiled directly to the real machine code by its compiler. So, if you use C++ code, it will be packaged as machine-readable code in your package. The ART will not reprocess it while it converts the ART-readable code into machine-readable code at the first time usage. You don’t need to worry about this process. You’re only responsible for writing an interface which lets Java talk to C++. We’re going to talk about that soon.

C ++代码由其编译器直接编译为真实的机器代码。 因此,如果您使用C ++代码,它将作为机器可读代码打包在您的程序包中。 ART在第一次使用时会将ART可读代码转换为机器可读代码时不会对其进行重新处理。 您无需担心此过程。 您只负责编写一个接口,使Java与C ++通讯。 我们将很快讨论。

C ++构建过程 (C++ Build Process)

We now have to talk about the C++ build process. The source code (the .cpp and .h files) is turned into expanded source code by a preprocessor in the very first step. This source code contains a whole lot of code. While you can get the final executable file using a command like the above, it’s possible to cut the build steps with related flags. You can get the extended source by giving the -E flag to the g++ compiler. I have a 40867 line file for a 4 line ‘hello world’ .cpp source code.

现在我们要谈谈C ++的构建过程。 第一步,将源代码(.cpp和.h文件)转换为扩展的源代码。 此源代码包含大量代码。 尽管您可以使用上述命令获得最终的可执行文件,但可以使用相关标志来削减构建步骤。 您可以通过将-E标志提供给g ++编译器来获取扩展源。 我有一个40867行文件,其中包含4行“ hello world” .cpp源代码。

Use g++ -E hello.cpp -o hello.ii in order to get the extended source code.
使用g ++ -E hello.cpp -o hello.ii以获得扩展的源代码。

The second one is the actual compilation step. The compiler compiles our code to obtain an assembler file. So, the real compilation yields an assembler file, not the executable. This file is assembled by an assembler. The resulting code is called object code. When we have multiple libraries aimed to be linked to each other we have many object codes. Those object codes are linked by a linker. Then we get an executable.

第二个是实际的编译步骤。 编译器编译我们的代码以获得一个汇编文件。 因此,真正的编译会产生一个汇编文件,而不是可执行文件。 该文件由汇编程序汇编。 所得的代码称为目标代码。 当我们有多个旨在相互链接的库时,我们就有许多目标代码。 这些目标代码通过链接器链接。 然后我们得到一个可执行文件。

There are two kinds of linking: dynamic and static.

链接有两种:动态链接和静态链接。

So now it’s time to go a bit deeper as we discuss pure C++ stuff.

所以现在是时候深入讨论纯C ++东西了。

The important thing: You can consider static linked libraries as a part of your code. So be careful when you link a library to your project. Because the library you use might not have a suitable license to be statically linked. Most open source libraries have been restricted to be used as dynamically linked.

重要的是:您可以将静态链接库视为代码的一部分。 因此,在将库链接到项目时要小心。 因为您使用的库可能没有合适的许可证来静态链接。 大多数开放源代码库已被限制只能用作动态链接。

From a technical point of view, a statically linked library is linked to the project at build time by the compiler. On the other hand, a dynamically linked library is linked by the operating system at run time. So you don’t need to distribute your project with the library code you use. You can use another project’s library or system library as well.

从技术角度来看,静态链接库在编译时由编译器链接到项目。 另一方面,动态链接库在运行时由操作系统链接。 因此,您不需要使用您使用的库代码来分发项目。 您也可以使用另一个项目的库或系统库。

Because of this fact dynamic linking may cause vulnerability in your project. While the security case is out of the scope of this post, however.

因此,动态链接可能会在您的项目中引起漏洞。 但是,尽管安全案例不在本文的讨论范围之内。

一些概念 (Some Concepts)

CMake和Gradle (CMake and Gradle)

If we want to add C++ code in our Android project, it’s good to use CMake to handle build operations. Remember the build process I have just introduced above? When you have a bunch of C++ libraries and source code it becomes more complicated to handle all of them. A tool like CMake makes it easier to carry out the build process.

如果我们想在我们的Android项目中添加C ++代码,则最好使用CMake处理构建操作。 还记得我上面刚刚介绍的构建过程吗? 当您有一堆C ++库和源代码时,处理所有这些库和源代码将变得更加复杂。 像CMake这样的工具可以使构建过程更加容易。

CMake will be available by default when you choose to include C++ support at the start of your project. Also you need to use a Gradle closure in order to package libraries to your APK.

当您选择在项目开始时包括C ++支持时,默认情况下CMake将可用。 另外,您需要使用Gradle闭包才能将库打包到APK。

阿比 (ABI)

As you know, Android is distributed for a variety of devices. Each device might have a different CPU architecture. When you develop an Android application that contains C++ code, you should care about the platforms on which your application will run.

如您所知,Android用于各种设备。 每个设备可能具有不同的CPU体系结构。 当开发包含C ++代码的Android应用程序时,应注意应用程序将在其上运行的平台。

Remember the C++ build mechanism I introduced above? The C++ code should be compiled as a library for each platform you target. You can compile the library for all the supported platforms, or you can choose to compile it for only one platform.

还记得我上面介绍的C ++构建机制吗? 应将C ++代码编译为目标平台的库。 您可以为所有受支持的平台编译该库,也可以选择仅针对一个平台编译它。

Please note that 64-bit ABI support will be mandatory with Android Pie release if you want to put your app in the Google Play Store.

请注意,如果您想将应用程序放入Google Play商店,则Android Pie版本必须提供64位ABI支持。

杰尼 (JNI)

This is the last thing I would like introduce you to concerning C++ usage in Android. As I mentioned previously, I’m introducing you these concepts considering you want to develop an app using Java.

这是我要向您介绍的有关Android中C ++用法的最后一件事。 如前所述,考虑到您想使用Java开发应用程序,我将向您介绍这些概念。

JNI is an abbreviation for Java Native Interface. It allows C++ and Java parts to talk to each other in the simplest terms. For example, if you want to call a function from C++ in Java, you should write a JNI interface for this purpose.

JNI是Java本机接口的缩写。 它允许C ++和Java部分以最简单的方式相互交谈。 例如,如果要使用Java从C ++调用函数,则应为此目的编写JNI接口。

The native-lib.cpp is the interface and it connects the C++ code to the Java code. In the above example, the only C++ code is the JNI itself. However, you can include the libraries you want to use and implement a function which calls them. This new function can be called from the Java part. So it works as a bridge in that way.

native-lib.cpp是接口,它将C ++代码连接到Java代码。 在上面的示例中,唯一的C ++代码是JNI本身。 但是,您可以包括要使用的库并实现调用它们的函数。 可以从Java部分调用此新函数。 因此它以这种方式充当桥梁。

想要尝试的事情 (Things to do in case you want to try it out)

Here, you have all the necessary and basic knowledge to use C++ in your Android project. If you want to give it a try, this is how to create a simple Android project with C++ code.

在这里,您具有在Android项目中使用C ++的所有必要和基本知识。 如果您想尝试一下,这就是使用C ++代码创建一个简单的Android项目的方法。

The below images show you the steps to start such a project. After finishing them, you might want to read over this post to modify and understand the mechanism more deeply.

下图显示了启动此类项目的步骤。 完成它们之后,您可能需要阅读这篇文章,以更深入地修改和理解该机制。

This post was only an introduction. Don’t forget there are many more things to learn. However, I aimed to introduce you the most important things about the concept of using C++.

这篇文章只是一个介绍。 不要忘记还有更多的东西要学习。 但是,我旨在向您介绍有关使用C ++概念的最重要的事情。

翻译自: https://www.freecodecamp.org/news/c-usage-in-android-4b57edf84322/

android开发使用c+

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/392804.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

PowerShell与活动目录

自从发布以来,Windows PowerShell已经成为Windows自动化平台的选择。它的强大和灵活已经在许多环境中被许多Windows技术所证明。不幸的是,在活动目录支持方面,PowerShell 1并没有什么可以炫耀。从基础角度,微软提供了ADSI“类型加…

408计算机组成原理有汇编吗,2021考研408计算机组成原理习题:计算机系统概述

10月是2021考研学子们备考的突破提升阶段,我们在复习专业课时,需要结合一定量的练习题来查漏补缺。接下来,小编为计算机考研考生们,带来了408统考计算机组成原理习题:计算机系统概述,供考生参考。2021考研408计算机组成…

react 文本框_React自动完成文本框

react 文本框In this React tutorial for beginners you will learn to create a basic React app and an autocomplete text box React component.在这个面向初学者的React教程中,您将学习创建一个基本的React应用程序和一个自动完成的文本框React组件。 This vid…

MyBatis-Plus入门Demo详解

一.简介: 引用官方文档(本文主要参考官方文档示例): MyBatis-Plus(简称 MP)是一个 MyBatis 的增强工具,在 MyBatis 的基础上只做增强不做改变,为简化开发、提高效率而生。 愿景 我们的愿景是成为 MyBatis 最好的搭档,就…

RHEL 5基础篇—常见系统启动类故障

常见系统启动类故障 在linux系统的启动过程中,涉及到MBR主引导记录、GRUB启动菜单、系统初始化配置文件inittab等各方面,其中任何一个环节出现故障都有可能会导致系统启动失败。因此一定要注意做好相关文件的备份工作。 1、MBR扇区故障 MBR引导记录位…

hcharts生成图表

借助hcharts插件,可以很方便地在模板页面中生成图表。类似插件还有echarts。 补充。。。 转载于:https://www.cnblogs.com/Forever77/p/11144346.html

css empty_何时使用:empty和:blank CSS伪选择器

css emptyI made a terrible mistake when I tweeted about :empty and :blank a while ago. I said that :empty wasn’t useful, and :blank is much more useful than :empty.不久前我在Twitter上发布:empty和:blank时,我犯了一个严重的错误。 我说过:empty没用&…

浙江大学计算机系统结构,高级计算机体系结构-浙江大学计算机系统结构室.pdf...

高级计算机体系结构-浙江大学计算机系统结构室高级计算机体系结构陈文智 浙江大学计算机学院chenwzzju.edu.cn2014年9月11.1 计算机技术发展综述(1)1946年: 在二次世界大战期间研制成功的世界上第一台电子计算机ENIAC(Electronic Numerical Intergrator andCalculator)正式对…

PVS 6.1 Configuring Services Failed

好久没有更新了,嘿嘿,更新一个。 项目中遇到一个问题,PVS安装到最后一步报错,如下图: 环境:PVS 6.1,数据库是SQL Server 2005 SP4 查了一下文档,PVS 6.1支持SQL Server 2005 SP4 排查…

javascript动态创建table

function createTable(parentNode,headres,datas){//创建表格var table document.createElement("table");//将表格追加到父容器中parentNode.appendChild(table);//设置table的样式table.cellSpacing 0;table.cellPadding 0;table.border "1px";//创建…

leetcode 234. 回文链表(快慢指针+链表倒置)

请判断一个链表是否为回文链表。 示例 1: 输入: 1->2 输出: false 示例 2: 输入: 1->2->2->1 输出: true 代码 /*** Definition for singly-linked list.* public class ListNode {* int val;* ListNode next;* ListNode(int x) { val x; }* }*/…

面试小问题——Object中有哪些常用方法?

一、equals方法 Object类中的equals方法用于检测一个对象是否等于另外一个对象。Java语言规范要求equals方法具有下面的特性: (1)自反性:对于任何非空引用x,x.equals(x)应该返回true (2)对称性&…

职称计算机证书 评中级职称,软考证书如何申请评职称及职称申请流程的详细介绍...

我们很多考友参加软考。比如信息系统项目管理师和系统集成项目管理工程师考试,目的都是为了评职称,那么在拿到软考证书后,很多人最关心的一个问题就是关于职称评聘问题,今天就以软考证书如何申请评职称及职称申请流程的详细介绍&a…

播客51:妈妈可以编码的创始人埃里卡·彼得森(Erica Peterson)

On todays episode of the freeCodeCamp.org podcast, Abbey Rennemeyer chats with Erica Peterson, a founder, entrepreneur, and mother of two who lives and works in Pittsburg, Pennsylvania.在freeCodeCamp.org播客的今天节目中,Abbey Rennemeyer与Erica P…

leetcode 1024. 视频拼接(dp/贪心)

你将会获得一系列视频片段,这些片段来自于一项持续时长为 T 秒的体育赛事。这些片段可能有所重叠,也可能长度不一。 视频片段 clips[i] 都用区间进行表示:开始于 clips[i][0] 并于 clips[i][1] 结束。我们甚至可以对这些片段自由地再剪辑&am…

java实现时钟方法汇总

import java.awt.Dimension; import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.Date; import java.util.Timer; import java.util.TimerTask;import javax.swing.JFrame; import javax.swing.JLabel; import javax.swing.JPanel; //第一种比较…

js中注册标识符流程

注册分为三个阶段:分别是注册阶段,函数处理阶段,变量处理阶段;这三个阶段有先后顺序的。(注:这三个阶段的名字没有权威性,是作者为了方便记忆自己起的名字) 注册阶段的特征 1.此时不…

jsp论坛网站模版_网站关键词优化怎么做

说到网站关键词优化,大多企业都很陌生,建站公司说的关键词优化头头是道。跟听天书似的,51商务网小编为大家总结的网站优化方法希望可以帮到大家,首先要说的是做网站优化第一点就是要有耐心,如果很长时间没有收录的话&a…

feature功能_利用feature-u V1释放基于功能的JS开发的强大功能

feature功能This article is an introduction to a new JS library called feature-u, that facilitates feature-based development in your React project.本文是对新的JS库(称为feature-u )的介绍,该库促进了React项目中基于功能的开发 。 Note: On 8/14/2018 f…

虚拟实验工场大学计算机实验报告答案,虚拟实验实验报告 - 实验报告 - 书业网.doc...

虚拟实验实验报告 - 实验报告 - 书业网虚拟实验实验报告 - 实验报告 - 书业网篇一:虚拟实验报告第一章 文献综述1.1 丙酮酸脱氢酶概述丙酮酸脱氢酶复合体(Pyruvate Dehydrogenase Complex)催化丙酮酸不可逆的氧化脱羧转化成乙酰辅酶A。该复合体是糖酵解的关键限速酶…