current location:Home > 过程 search

Classify:
Found a total of 529 related content
  • The whole process of Android driver development Chinese WORD version
    The whole process of Android driver development Chinese WORD version
    Android's hardware abstraction layer, simply put, encapsulates the Linux kernel driver, provides interfaces upward, and shields low-level implementation details. In other words, the hardware support is divided into two layers, one is placed in user space (User Space), and the other is placed in kernel space (Kernel Space). Among them, the hardware abstraction layer runs in user space, and the Linux kernel driver The program runs in kernel space. Interested friends can come and take a look
    2024-02-02 0 557
  • MyBatis stored procedures, MyBatis paging, MyBatis one-to-many add, delete, modify and query operations Chinese WORD version
    MyBatis stored procedures, MyBatis paging, MyBatis one-to-many add, delete, modify and query operations Chinese WORD version
    This document mainly talks about MyBatis stored procedures, MyBatis paging, and MyBatis one-to-many add, delete, modify, and check operations; I hope it will be helpful to everyone; interested friends can come and take a look.
    2024-02-29 0 875
  • Qt OpenGL tutorial Chinese WORD version
    Qt OpenGL tutorial Chinese WORD version
    This document mainly talks about the Qt OpenGL tutorial; because this tutorial is migrated from NeHe's OpenGL tutorial, the code is changed to Qt implementation. Therefore, some courses have not yet been successfully implemented, so some tutorials may be skipped. I hope this document will help friends in need; interested friends can come and take a look.
    2024-02-29 0 585
  • Android program development introductory tutorial Chinese WORD version
    Android program development introductory tutorial Chinese WORD version
    This document mainly talks about the introductory tutorial for Android program development; I hope this document will help friends in need; interested friends can come and take a look.
    2024-02-01 0 626
  • python tutorial for beginners Chinese WORD version
    python tutorial for beginners Chinese WORD version
    This document is a tutorial for newbies to Python; Python is a computer programming language. You may have heard of many popular programming languages, such as the very difficult to learn C language, the very popular Java language, the Basic language suitable for beginners, the JavaScript language suitable for web programming, and so on. Interested friends can come and take a look
    2024-01-23 0 769
  • DELPHI Write remote control program PDF
    DELPHI Write remote control program PDF
    Use DELPHI to write remote control programs PDF
    2024-01-22 0 560
  • OpenMP Multi-Threaded Programming Guide WORD Edition
    OpenMP Multi-Threaded Programming Guide WORD Edition
    This document mainly talks about the OpenMP multi-threaded programming guide; OpenMP was proposed by the OpenMP Architecture Review Board and has been widely accepted as a set of guiding notes (Compiler Directive) for multi-threaded programming of shared memory parallel systems. ). OpenMP is a multi-processor multi-thread parallel programming language for shared memory and distributed shared memory. It can be used to display and guide multi-threaded and shared memory parallel application programming interfaces. It is hoped that this document will provide
    2024-02-03 0 1276
  • Programming English vocabulary summary Chinese WORD version
    Programming English vocabulary summary Chinese WORD version
    The content of this document is a summary of programming English vocabulary; it contains English words that are relatively unfamiliar in programming, and you can check them frequently in daily programming! Interested friends can come and take a look
    2024-02-27 0 539
  • Delphi mastery step by step tutorial pdf version
    Delphi mastery step by step tutorial pdf version
    Delphi primary tutorial step by step mastery pdf, briefly summarize the content: Delphi overview, programming of three structures of the Object Pascal language base, arrays, procedures and functions, custom types, common components of Delphi, multimedia application programming, DLL applications, Database application base SQL database programming, etc.
    2024-01-19 1 1111
  • Introduction to shell programming under Linux system Chinese WORD version
    Introduction to shell programming under Linux system Chinese WORD version
    This document mainly talks about the introduction to shell programming under Linux system; Shell programming has many features similar to C language and other programming languages, but it is not as complicated as programming languages. A shell program is a series of Linux commands and utilities placed in a file. When executed, each command is interpreted and executed one by one by Linux. Interested friends can come and take a look
    2024-01-27 9 1888
  • Proverbs of Programmers chm version
    Proverbs of Programmers chm version
    This book is a summary of the author's technology and experience in more than ten years of programming career. The content covers everything from understanding the operating mechanism of CPU, Windows, and programming language to code specifications and styles, analysis methods, debugging methods and kernel optimization. It contains the author's cognitive process and thorough analysis of many issues, as well as excellent and a wonderful programming experience.
    2024-01-19 0 1204
  • Android Google mobile programming tutorial PDF version
    Android Google mobile programming tutorial PDF version
    Android Google Mobile Phone Programming Tutorial Traditional Edition, the content of the book is mainly related to the knowledge of Google mobile operating system, introduces the principles and methods of programming on the Google mobile platform, and guides Google programmers into the Google Phone in the form of examples. The palace of programming art.
    2024-02-27 0 1065
  • Analysis of Android application message processing mechanism Chinese WORD version
    Analysis of Android application message processing mechanism Chinese WORD version
    Android applications are driven by messages. The system maintains a message queue for each application. The main thread of the application continuously obtains messages from this message queue (Looper), and then processes these messages (Handler). , In this way, the execution of the application is driven by messages. This article will analyze the message processing mechanism of Android applications in detail. Friends in need can download and take a look
    2024-02-28 0 1091
  • The use of multi-threading technology in iOS development WORD version
    The use of multi-threading technology in iOS development WORD version
    This document mainly talks about the use of multi-threading technology in iOS development; the so-called process corresponds to an application, which is responsible for opening up memory space for application use, but the process cannot execute tasks (instructions). A process contains at least one thread, which is the execution flow of the program. When an iOS program starts, while creating a process, it will start running a thread, which is called the main thread; I hope this document will help friends in need; interested friends can come and take a look.
    2024-02-28 0 1125
  • Web Technology Tutorial
    Web Technology Tutorial
    Web technology tutorial download
    2017-02-14 2028 24542
  • Android Programmer's Guide chm version
    Android Programmer's Guide chm version
    Android mobile programmer guide, because I came into contact with the Android platform by chance, but I have never been exposed to this kind of programming materials before, and there are very few materials on the Internet, so I translated some based on foreign materials and exhausted my own For all translation levels, I believe this will be a very comprehensive and basic Android programming tutorial in China, which should be helpful to you.
    2024-02-26 0 810
  • Introduction to Android mobile phone camera programming Chinese WORD version
    Introduction to Android mobile phone camera programming Chinese WORD version
    This document mainly talks about the introduction to Android mobile phone camera programming; interested friends can come and take a look.
    2024-02-29 0 1121
  • vue.jsAPI tutorial (PDF version)
    vue.jsAPI tutorial (PDF version)
    vue.jsAPI Chinese offline tutorial (PDF version)
    2019-09-03 683 15723
  • PowerDesigner simple tutorial Chinese WORD version
    PowerDesigner simple tutorial Chinese WORD version
    This document mainly talks about a simple tutorial on PowerDesigner; I hope this document will help friends in need; interested friends can come and take a look.
    2024-02-28 0 1099
  • Multi-threaded programming technology in Android development Chinese WORD version
    Multi-threaded programming technology in Android development Chinese WORD version
    This document mainly talks about multi-threaded programming technology in Android development; threads in Android are widely used in multi-threading in the Android platform. Multi-threading is required in UI updates, game development and time-consuming processing (network communications, etc.) . The technologies involved in Android threads are: Handler; Message; MessageQueue; Looper; HandlerThread. Friends in need can download and take a look
    2024-01-29 2 2067
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!