>   > 

C++编译器下载

C++编译器最新版截图

C++编译器截图 C++编译器截图 C++编译器截图 C++编译器截图 C++编译器截图 C++编译器截图 C++编译器截图 C++编译器截图 C++编译器截图 C++编译器截图 C++编译器截图
  • C++编译器截图预览
  • C++编译器截图预览
  • C++编译器截图预览
  • C++编译器截图预览
  • C++编译器截图预览
  • C++编译器截图预览
  • C++编译器截图预览
  • C++编译器截图预览
  • C++编译器截图预览
  • C++编译器截图预览
  • C++编译器截图预览
C4droid is a user-friendly (but powerful) C/C++ IDE + C/C++ compiler for Android.
Basic features:
- Offline C compiler: create your own applications on Android device and run them even without Internet access
- Source code editor with syntax highlighting, tabs, code completion, code formatting, file association and undo/redo
- Export&share your programs as APKs or native executables (for terminal apps)
- No root required (but C4droid can use it for your programs if you want)
- Full ANSI C and ISO C99 support with TCC (Tiny C Compiler) + uClibc
- Git integration
- Customizable GUI, choose where to place tabs and buttons by yourself, themes are also supported.
More features with a free GCC plugin:
- Fully-functional C++ compiler, almost complete C++11 support with GCC compiler
- NativeActivity, Qt, SDL and SDL2 support for GUI
- Debugger with breakpoints and watches
- Makefile support: use the same build scripts as on your PC (BusyBox is included)
- Semi-automatic open-source library porting feature for enhanced programming & education
C4droid is designed to be user-friendy out-of-the-box, but nothing is perfect, so here are some answers for questions that can appear:
How to install C++ support?
C4droid will ask you to install C++ support at first startup and will configure itself in semi-automatic mode.
If you want to do that manually, you need:
0) Enough internal memory OR root rights. C4droid does not require root rights for devices with more than 50MB of free internal memory.
1) Install GCC plugin (C4droid will ask you to install it).
2) Select G++ compiler in C4droid preferences.
3*) Add "using namespace std;" to your program(before int main), use iostream, not iostream.h
Note that if you want to use C4droid as a C compiler, it is better to select GCC, not G++.
How to use SDL, SDL2, NativeActivity and Qt in single-file mode?
Just install SDL plugin and select G++ compiler in C4droid preferences.
Note that C4droid chooses app mode using a very simple source code analysis:
SDL is detected with #include "SDL.h", SDL2 is detected with #include "SDL2/SDL.h", NativeActivity is detected with #include "android_native_app_glue.h", Qt is detected with #include "QApplication"
If you are compiling a single-file Qt app, you must add #include "yoursourcefilenamewithcpp.moc" to the end of source code file also.
How to use Makefiles, multifile projects, etc?
Long-click compile button (or select "compilation settings" if buttons are hidden/moved) and configure current directory to use the mode you want.
Note that C4droid will create .c4droid configuration file when you will press Ok. Some modes (like makefile) require to enter result executable file name, don't forget to do that.
After doing that all use compile and run buttons to build and run your app as regular.
How to build and install libraries?
Almost the same way as regular Makefile building except for that most probably some patching may be required.
Currently tested libraries are gmp(internal memory only),mpfr,mpc,libxml2,neon,sqlite,SDL_gfx(--disable-mmx required).
Which gestures/keyboard shortcuts does C4droid support?
Long-click gestures:
Save button: save as.
Open button: recent files.
Run button: run with arguments.
Compile button: configure current directory.
Tab: close tab.
Keyboard shortcuts:
Ctrl-C, Ctrl-V, Ctrl-X for Copy, Paste and Cut
Ctrl-S, Ctrl-O for Save/Open
Ctrl-Z, Ctrl-Y for Undo/Redo.
Ctrl-L for "go to Line"
Ctrl-F for Find
Ctrl-A for select All
Ctrl-B for Build/compile
Ctrl-R for Run
Ctrl-Space/Ctrl-D for autocompletion (Ctrl-Space may be reserved by Android)
Report bugs at n0n3m4@gmail.com.
C4droid stands for "c for android" (or "c++ for android").
C4droid is not an online compiler, so it uses real binaries.
Some binaries in APK are licensed under (L)GPL, email me for the source code (Tiny C compiler, GCC, BusyBox, etc.)
Android is a trademark of Google Inc.
Qt is a registered trademark of Digia.
C4droid是一个用户友好的(但功能强大)C / C ++ IDE + C / C ++编译器为Android。
基本特点:
- 离线C编译器:创建自己的Andr​​oid设备的应用程序,甚至没有互联网接入运行它们
- 源代码编辑器与语法高亮,标签,代码完成,代码格式化,文件关联和撤销/重做
- 出口和分享你的节目,或的APK本地可执行文件(用于终端应用程序)
- 无根所需的(但C4droid可以用它为你的程序,如果你想)
- 完整的ANSI C和ISO C99支持与TCC(微型C编译器)+ uClibc中
- 整合的Git
- 可定制的图形用户界面,选择在哪里自行放置标签和按​​钮,也支持主题。
更多功能的免费插件GCC:
- 全功能的C ++编译器,几乎完整的C ++ 11的支持与GCC编译器
- NativeActivity的,QT,SDL和SDL2的GUI支持
- 调试器,带有断点和监视
- Makefile文件支持:使用相同的构建脚本为您的PC上(BusyBox的是包含)
- 加强规划和教育半自动开放源代码库的移植功能
C4droid被设计为用户friendy出的开箱即用,但没有什么是完美的,所以这里有一些答案可能出现的问题:
如何安装C ++的支持?
C4droid会要求你安装C ++的支持,第一个启动,并将自身配置在半自动模式。
如果你想这样做手工,您需要:
0)足够的内部存储器或根权限。 C4droid并不需要为超过免费的内部存储器50MB​​设备的根权限。
1)安装GCC插件(C4droid会要求你安装它)。
2)选择G ++编译器C4droid偏好。
3 *)添加“使用名字空间std;”你的程序(之前INT为主),使用的iostream,而不是iostream.h
请注意,如果你想使用C4droid作为C编译器,它是更好的选择GCC,而不是G ++。
如何使用SDL,SDL2,NativeActivity的和Qt在单文件模式?
只需安装插件SDL并选择G ++编译器C4droid偏好。
需要注意的是C4droid用一个非常简单的源代码分析选择应用模式:
SDL检测以#include“SDL.h”,SDL2检测以#include“SDL2 / SDL.h”,NativeActivity的检测以#include“android_native_app_glue.h”,Qt是检测以#include“QApplication的”
如果你正在编译单个文件Qt的应用程序,您必须添加#“yoursourcefilenamewithcpp.moc”源代码文件还月底。
如何使用Makefile中,多文件项目等?
长按按钮编译(或选择,如果按钮都被隐藏/移动“编译设置”),并配置当前目录来使用你想要的模式。
需要注意的是C4droid将创建.c4droid配置文件时,你会按确定。一些模式(如生成文件)要求进入导致可执行文件名,不要忘了做。
这样做之后,所有使用编译和运行按钮生成并运行你的应用程序作为常规。
如何构建和安装库?
几乎相同的方式作为常规的Makefile建筑不同的是,最有可能一些修补可能需要。
目前测试库是GMP(内存只),MPFR,MPC,libxml2的,霓虹灯,sqlite的,SDL_gfx( - 禁用 - MMX要求)。
其中手势/键盘快捷键不支持C4droid?
长按手势:
保存按钮:保存为。
打开按钮:最近的文件。
运行按钮:带参数运行。
编译按钮:设置当前目录。
标签:关闭标签。
键盘快捷键:
按Ctrl-C,CTRL-V,CTRL-X的复制,粘贴和剪切
按Ctrl-S,按Ctrl-O用于保存/打开
按Ctrl-Z,CTRL-Y的撤销/重做。
按Ctrl-L为“去行”
按Ctrl-F为寻找
按Ctrl-A用于选择所有
按Ctrl-B为构建/编译
按Ctrl-R的运行
Ctrl-Space键/按Ctrl-D为自动完成(Ctrl-Space键可以通过Android的保留)
报告错误在n0n3m4@gmail.com。
C4droid代表“下机器人”(或“c ++ android的”)。
C4droid是不是一个在线的编译器,所以它使用真正的二进制文件。
在APK一些二进制文件下(L)GPL许可的,给我发电子邮件的源代码(微型C编译器,GCC,BusyBox的,等等)
Android是谷歌公司的商标。
Qt是Digia公司的注册商标。

C++编译器更新内容

提升体验,修复部分问题。

相关信息

大小
2.6MB
时间
分类
系统工具 优化
版本
 5.00
要求
Android 2.1.0 以上
查看权限要求 
隐私政策
开发者
n0n3m4
备案号
未备案

应用下载排行榜

  1. UC浏览器 UC浏览器

    103.82MB

    查看
  2. 淘宝 淘宝

    69.5MB

    查看
  3. 微信 微信

    252.79MB

    查看
  4. 抖音 抖音

    228.22MB

    查看

相关专题

最新专题

签名认证

C++编译器

签名认证专区
T3车主
118.63MB
查看
企查查
52.74MB
查看
应届生求职
90.73MB
查看
爱奇艺播播机
82.68MB
查看
互联通讯
36.43MB
查看
养生老黄历
31.59MB
查看
QQ
288.65MB
查看
工具大全
32.1MB
查看
酷狗直播
74.13MB
查看
一喂宠物托运
125.15MB
查看
Keep
133.73MB
查看
健客医生
60.85MB
查看
拼车
124.81MB
查看
推易播
7.75MB
查看
爱奇艺
138.69MB
查看
艺龙旅行
77.16MB
查看
酷狗大字版
68.61MB
查看
搜索大全
16.23MB
查看
手机数据恢复精灵
17.4MB
查看
爱奇艺VR
154.64MB
查看
虎牙直播
141.78MB
查看
剪画
44.85MB
查看
最美天气
68.5MB
查看
YOWA云游戏
97.07MB
查看
咪咕音乐
83.18MB
查看
数图
54.89MB
查看
哈客
83.53MB
查看
语音闹钟
31.07MB
查看
什么值得买
64.69MB
查看
得物
85.11MB
查看
燃粉
21.58MB
查看
酷狗儿歌
77.36MB
查看
换机助手
17.77MB
查看
QQ浏览器
127.79MB
查看
农卷风
48.72MB
查看
给多多
51.5MB
查看
顺风车司机版
118.56MB
查看
滴答
142.04MB
查看
优律邦律师
55.4MB
查看
清美云超
29.15MB
查看
噪音检测仪
18.46MB
查看
一起驾考
36.11MB
查看
优到客店员
51.71MB
查看
T3出行
114.85MB
查看
汽车票
125.57MB
查看
神州专车
50.38MB
查看
去狮城
61.78MB
查看
虎牙助手
107.17MB
查看
微视
96.13MB
查看
爱奇艺极速版
34.76MB
查看
卡服
40.49MB
查看
QQ音乐
182.59MB
查看
房天下
94.64MB
查看
创游
52.8MB
查看
橙邻居
53.12MB
查看
七猫免费小说
69.71MB
查看
腾讯微云
48.18MB
查看
撸铁记
13.33MB
查看
顺风车
124.88MB
查看
小海浏览器
3.54MB
查看
芒果TV
116.92MB
查看
腾讯视频
129.68MB
查看
爱奇艺叭嗒
92.07MB
查看
待办任务清单
23.36MB
查看
看准
42.93MB
查看
奈斯天气
34.94MB
查看
花美折
53.28MB
查看
微信
252.79MB
查看
腾讯手机管家
85.22MB
查看
推测志愿
39.38MB
查看
万象星选
66.93MB
查看
艺亿果视频
17.08MB
查看
悬浮球录屏锁屏
23.11MB
查看
猫乐饭
24.69MB
查看
酷狗概念版
132.84MB
查看
腾讯地图
147.29MB
查看
恒创领沃汽配商城
53.1MB
查看
驾考顺口溜
40.61MB
查看
酷狗唱唱斗歌版
56.43MB
查看
药点通
28.75MB
查看
易通宝典
4.97MB
查看
蝶变志愿
39.78MB
查看
腾讯新闻
62.51MB
查看
斗鱼极速版
38.52MB
查看
志愿北疆
42.93MB
查看
快影
156.62MB
查看
天鹅到家极速版
63.92MB
查看
一喂顺风车
119.39MB
查看
小車社区养车
103.1MB
查看
美颜相机
119.55MB
查看
爱奇艺小说
82.76MB
查看
同程旅行
88.25MB
查看
豌豆荚安卓版二维码

扫一扫安装
豌豆荚发现更多