In Linux, everything is a file, so the Android system itself is just Linux+Java, and it also runs in the Linux environment. Usually, we use printf when debugging programs. In Android, we will use logcat. Now, I will introduce you to a commonly used debugging method, the debug writing file debugging method. In the Android system, debugging a C application is extremely inconvenient. In order to preserve the integrity of the log, the file debugging method can play a significant role. Here is an example: #include <stdio.h> FILE * write_debug_file=NULL; //Write debug information to file void write_Debug_to_file(char *debug_log) { if(write_debug_file==NULL) wirte_debug_file = fopen("debug.txt","wt"); if(write_debug_file==NULL) return; fputs(debug_log,write_debug_file); } int main(void) { int i ; char buf[100]; for(i = 0 ; i < 10 ; i++) { sprintf(buf,"i:%d\n",i); //Write debug information write_Debug_to_file(buf); } if(write_debug_file != NULL) fclose(write_debug_file); return 0 ; } Running results: After we open debug.txt, we can see:
The printed data is saved in this file. We can even write any sentence in the code segment into the log and analyze the problem later. This is a very good debugging tool. Summarize The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. If you want to learn more about this, please check out the following links You may also be interested in:
|
<<: Global call implementation of Vue2.x Picker on mobile terminal
>>: Detailed explanation of IFNULL() and COALESCE() functions to replace null in MySQL
When a thread executes a DELAYED statement for a ...
The <canvas> element is designed for client...
Most of this article refers to other tutorials on...
px(pixel) I believe everyone is familiar with the...
This article introduces blue-green deployment and...
Since the team is separating the front-end and ba...
Docker is a management tool that uses processes a...
This article is mainly for those who do not under...
This article describes how to boot the Linux syst...
Table of contents Preface Child components pass d...
The code looks like this: .process{ border:1px so...
Introduction to HTML HyperText Markup Language: H...
Demand background Part of the data in the busines...
1 Introduction Redis is a high-performance NoSQL ...
Use scenarios: The jump path needs to be dynamica...