current location:Home > c语法 search

Classify:
Found a total of 529 related content
  • fortran language grammar WORD version
    fortran language grammar WORD version
    This document mainly talks about the syntax of the fortran language; FORTRAN is the earliest high-level programming language in the world and the most commonly used programming language in the engineering community. It is used in scientific computing (such as aerospace, geological exploration, weather forecasting, construction engineering and other fields ) plays an extremely important role. After more than 40 years of development, with the updates of multiple versions of the FORTRAN language and the emergence of corresponding development systems, its functions have been continuously improved. The latest version of the development system has almost all the features of VC and VB, such as graphical interface programming, databases, etc. I hope this document will help friends in need
    2024-02-03 0 1239
  • Android makefile compilation system Android.mk file syntax specification Chinese WORD version
    Android makefile compilation system Android.mk file syntax specification Chinese WORD version
    This document mainly talks about the Android makefile compilation system Android.mk file syntax specification; the Android.mk compilation file is used to describe your C, C++ source code files to the Android NDK. This document describes its syntax. Before reading the following content, it is assumed that you have read the docs/OVERVIEW.TXT file and understand their roles and uses. Interested friends can come and take a look
    2024-02-02 0 1309
  • SQLite syntax and Android database operations Chinese WORD version
    SQLite syntax and Android database operations Chinese WORD version
    This document mainly talks about SQLite syntax and Android database operations; Android's SQLiteDatabase does not originally depend on Android, but exists independently as an individual, with its own unique system and language, and this is SQL syntax . SQLite is a lightweight database with few functions for large databases, so you only need to learn some common SQL syntax to easily master it, and these SQL syntaxes are basically unchanged for other databases. needed
    2024-02-27 0 563
  • mybatis syntax and introduction Chinese WORD version
    mybatis syntax and introduction Chinese WORD version
    This document mainly talks about the syntax and introduction of mybatis; MyBatis is a persistence layer framework that can customize SQL, stored procedures and advanced mapping. MyBatis eliminates most of the JDBC code, manual setting of parameters and result set retrieval. MyBatis only uses simple XML and annotations to configure and map basic data types, Map interfaces and POJOs to database records. Compared with "one-stop" ORM solutions such as Hibernate and Apache OJB
    2024-01-31 2 1125
  • SOAP syntax word version
    SOAP syntax word version
    One of SOAP, WSDL (WebServicesDescriptionLanguage), and UDDI (UniversalDescriptionDiscoveryandIntegration), soap is used to describe the format of transmitting information, WSDL is used to describe how to access specific interfaces, and uddi is used to manage, distribute, and query webServices. Specific implementations can search for simple instances of Web Services; SOAP can be used with many existing
    2024-02-28 0 917
  • doxygen official manual
    doxygen official manual
    Doxygen is a useful programmer's auxiliary tool. It can make it easier to add batch code to the program. It is compatible with mainstream programming languages ​​​​such as C++, C, Java, Objective-C, Python, etc. The Chinese manual of doxygen provided by the editor includes The basic introduction, grammar skills and advanced skills can help you get started quickly. If you need it, you are welcome to download it. Basic introduction Doxygen already supports generating ANSI encoded chm directory files (index.hhc)! Doxygen is usually used to generate English
    2024-01-30 0 717
  • Delphi7 basic grammar tutorial Chinese WORD version
    Delphi7 basic grammar tutorial Chinese WORD version
    Delphi is a Windows rapid application development tool (RAD Rapid Application Development) based on the client/server system launched by the American Borland Company. It is an object-oriented visual programming tool based on the visibility of Delphi and combined with the Object Pascal language. With programming skills, you can develop powerful Windows applications and database applications. Delphi is the first visual development environment, optimized source code compiler and
    2024-01-18 1 1059
  • Groovy Getting Started Tutorial Chinese WORD Version
    Groovy Getting Started Tutorial Chinese WORD Version
    This document is an introductory tutorial to Groovy; simply put, Groovy is the next generation of Java language. Like Java, it also runs in the JVM. As another language running in the JVM, groovy syntax is very similar to the Java language syntax. At the same time, Groovy abandons Java's cumbersome grammar. For the same statement, using groovy can reduce your keystrokes to the greatest extent - this is indeed the "lazy programmers"
    2024-02-26 1 605
  • 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
  • Introduction to matlab basic knowledge Chinese WORD version
    Introduction to matlab basic knowledge Chinese WORD version
    MATLAB (Matrix Laboratory) is the abbreviation of MATrix LABoratory, a commercial mathematics software produced by The MathWorks Company of the United States. MATLAB is a high-level technical computing language and interactive environment for algorithm development, data visualization, data analysis, and numerical calculations. In addition to common functions such as matrix operations and drawing function/data images, MATLAB can also be used to create user interfaces and call programs written in other languages ​​(including C, C++ and FORTRAN). MATLAB basics; command window
    2024-01-18 0 1214
  • Summary of basic usage of Fortran WORD version
    Summary of basic usage of Fortran WORD version
    This document mainly talks about a summary of the basic usage of Fortran; I hope it can bring some help to students who have learned C but have not been exposed to Fortran. Fortran is a programming language. It is the world's earliest high-level computer programming language and is widely used in scientific and engineering computing fields. The FORTRAN language plays an important role in the fields of numerical, scientific and engineering computing with its unique functions. Fortran laid the foundation for the development of high-level languages. Fortran is now widely used in scientific research and machinery. I hope this document will bring it to friends in need
    2024-02-27 0 898
  • Getting started with Qt QML
    Getting started with Qt QML
    This document mainly talks about getting started with Qt QML – QML syntax; QML is a descriptive scripting language, and the file format ends with .qml. The syntax format is very similar to CSS (refer to the specific examples below), but it also supports programming control in the form of javascript. QML is part of the Qt Quick technology launched by Qt. It is a new and easy-to-learn language. I hope this document will help friends in need; interested friends can come and take a look.
    2024-01-28 0 785
  • GNU make Chinese manual pdf version
    GNU make Chinese manual pdf version
    GNU makefile Chinese manual pdf, the article describes the GNU make tool more completely, covering the usage and syntax of GNU make. At the same time, we focus on how to write Makefile for a project. Before reading this book, readers should have a certain understanding of the GNU tool chain and some common programming tools in Linux. Such as: gcc, as, ar, ld, yacc, etc. This article gives a relatively complete description of the GNU make tool, covering the usage and syntax of GNU make. Focus on how to use make to manage software projects,
    2024-01-19 1 564
  • QML introductory tutorial Chinese WORD version
    QML introductory tutorial Chinese WORD version
    This document mainly talks about the introductory tutorial of QML; QML is a descriptive scripting language, and the file format ends with .qml. The syntax format is very similar to CSS (refer to the specific examples below), but it also supports programming control in JavaScript form. It combines the advantages of QtDesigner UI and QtScript. QtDesigner can design .ui interface files, but does not support interaction with Qt's native C++ code. I hope this document will help friends in need; interested friends can come and take a look.
    2024-01-31 0 695
  • Delphi Language Reference Chinese WORD version
    Delphi Language Reference Chinese WORD version
    This document mainly talks about the Delphi language reference; Delphi is a structured, object-oriented, type-robust, high-level language that can be compiled and executed. Its object pascal syntax specification has good readability, fast compilation, and multi-unit modular programs. Design and other advantages. Delphi technology Borland's component framework and rapid development environment. For the most part, this syntax guide assumes you are using Borland's development tools. I hope this document will help friends in need; interested friends can come and take a look.
    2024-01-18 0 520
  • 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
  • Shell scripting basics Chinese WORD version
    Shell scripting basics Chinese WORD version
    Shell itself is a program written in C language, which is a bridge for users to use Linux. Shell is both a command language and a programming language. As a command language, it interactively interprets and executes commands entered by the user; as a programming language, it defines various variables and parameters, and provides many control structures found only in high-level languages, including loops and branches. Although it is not part of the Linux system core, it calls most of the functions of the system core to execute programs, create files, and coordinate the running of various programs in a parallel manner. Therefore, for
    2024-02-03 6 2665
  • Python website development guide WORD version
    Python website development guide WORD version
    This document mainly talks about the guidelines for developing websites in Python; HTML is the universal language of the Internet, a simple and universal all-in-one markup language. It allows web page producers to create complex pages that combine text and images. These pages can be browsed by anyone else on the Internet, no matter what type of computer or browser is used. Python, like other programming languages, has its own set of processes. Control statements, and the syntax of these statements is similar to other programming languages. They all have keywords such as for, if, and while to express the program flow. I hope this document will help friends in need
    2024-01-25 0 979
  • Scala Chinese Manual Scala Getting Started and Advanced
    Scala Chinese Manual Scala Getting Started and Advanced
    Scala is also a functional language, and its functions can also be used as values. Scala provides a lightweight syntax for defining anonymous functions, supports higher-order functions, allows nesting of multi-level functions, and supports currying. Scala's Case Class and its built-in pattern matching are equivalent to the Algebraic Type commonly used in functional programming languages. Scala Classroom is a series of lectures launched by Twitter to help experienced engineers become effective Scala programmers. Scala is a relatively new language
    2024-02-02 0 1129
  • OpenMP parallel programming WORD version
    OpenMP parallel programming WORD version
    This document mainly talks about OpenMP parallel programming; OpenMP is a collection of compiler instructions and library functions, mainly used for parallel programming on shared storage computers. Currently, the languages ​​that support OpenMP mainly include Fortran and C/C++. OpenMP uses the fork/join parallel mode when executing programs in parallel. Shared storage parallel programs use fork/join parallelism. I hope this document will help friends in need; interested friends can come and take a look.
    2024-02-29 0 1093
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!