current location:Home > zi后缀文件 search

Classify:
Found a total of 529 related content
  • How to use Visual Studio 2010 WORD document doc format
    How to use Visual Studio 2010 WORD document doc format
    How to use Visual Studio 2010 1. Open the interface and click File---→New---→Project. The new project interface will pop up. Select Visual C++ on the left, select an empty project on the right, then enter the name and storage location below, and finally click OK. After that, the interface (Solution Explorer) will pop up, then select the header file, or source file, right-click---→Add---→New project, pop-up Add
    2024-02-29 0 1299
  • Python module learning Chinese WORD version
    Python module learning Chinese WORD version
    This document mainly talks about module learning in Python; Python is composed of a series of modules. Each module is a file with the suffix py. At the same time, the module is also a namespace, thus avoiding the problem of variable name conflicts. We can understand modules as lib libraries. If you need to use a function or object in a certain module, you must import this module before it can be used. Except for the system default modules (built-in functions), which do not need to be imported. I hope this document will help friends in need; interested friends can come and take a look.
    2024-01-25 2 1042
  • Eclipse configuration Tomcat tutorial Chinese WORD version
    Eclipse configuration Tomcat tutorial Chinese WORD version
    This document mainly talks about the Eclipse configuration Tomcat tutorial; Eclipse IDE: eclipse IDE is used as the development environment for JSP pages and Java files. Eclipse is a very simple and easy-to-use IDE environment. It has many features that can help programmers quickly write and debug Java programs. With the addition of the tomcat plug-in, this IDE is used to manage the entire web project (including HTML and JSP pages, icons and servlets).
    2024-02-28 0 840
  • 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
  • Android service Service_detailed explanation WORD version
    Android service Service_detailed explanation WORD version
    This document mainly talks about the detailed explanation of the Android service Service_; Service is one of the four application components in the Android system (for details on other components, see Section 3.2). Services are mainly used for two purposes: background running and cross-process access. By starting a service, you can run specified tasks in the background without displaying the interface, so that it does not affect the user's ability to do other things. Communication between different processes can be achieved through the AIDL service, which is also one of the important uses of the service. I hope this document will help friends in need;
    2024-01-31 0 660
  • Introduction to Android operating system Chinese WORD version
    Introduction to Android operating system Chinese WORD version
    This document mainly describes the introduction of the Android operating system; Android is an operating system based on the Linux kernel. It is a mobile operating system announced by Google on November 5, 2007. It was developed by Google in the early days and later by the Open Handheld Device Alliance (Open Developed by Handset Alliance. It adopts a software stack (also known as software stack) architecture, which is mainly divided into three parts. The underlying Linux kernel only provides basic functions; other application software is provided by each company.
    2024-02-28 0 575
  • 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
  • Use Nexus to build a Maven private server Chinese WORD version
    Use Nexus to build a Maven private server Chinese WORD version
    This document mainly talks about using Nexus to build a Maven private server; the private server is a special remote warehouse set up on the LAN for the purpose of proxying the remote warehouse and deploying third-party components. With the private server, when Maven needs to download a component, it directly requests the private server. If it exists on the private server, it downloads it to the local warehouse; otherwise, the private server requests an external remote warehouse, downloads the component to the private server, and then provides it to the local warehouse for download. Interested friends can come and take a look
    2024-02-28 0 1018
  • Lucene index database Chinese WORD version
    Lucene index database Chinese WORD version
    This document mainly talks about the Lucene index database; Lucene, as an auxiliary tool for full-text search, performs conditional searches for us, whether it is search engines like Google, Baidu, search functions in forums, or other C/ S-architecture search brings great convenience and relatively high efficiency. This article mainly uses Lucene to index MS Sql Server 2000, and then performs full-text indexing. As for the content of the database, it can be the content of the web page or other things. Contents of the database in this article
    2024-02-29 0 1142
  • Easy language programming
    Easy language programming
    Yi Language is a fully Chinese, fully visual, cross-platform programming tool. It was designed and developed by Dalian Dayou Wu Tao Yi Language Software Development Co., Ltd. It is characterized by full Chinese culture and low entry requirements. Almost all you need to know how to use computers and words is Anyone who inputs can do programming, and its development language is all Chinese and life-oriented. In the future study, we will deeply appreciate its "easy". Let's enter the world of "Easy" together! This platform provides easy language programming beginner version download
    2024-02-29 0 753
  • go language reference manual Chinese CHM version
    go language reference manual Chinese CHM version
    Go is an open source programming language that makes it easy to build simple, reliable, and efficient software. This article brings you the Go reference manual, you can download it if you need it! Go was developed by Robert Griesemer, Rob Pike, Ken Thompson from the end of 2007, and later joined by Ian Lance Taylor, Russ Cox and others. It was finally open sourced in November 2009 and Go 1 stable was released in early 2012. Version. The development of Go is now fully open
    2024-02-27 4 1869
  • Create a Web Maven Project in Eclipse and deploy it to Tomcat Chinese WORD version
    Create a Web Maven Project in Eclipse and deploy it to Tomcat Chinese WORD version
    As we all know, during the development process of J2EE projects, if you only modify the page during the debugging phase, you do not need to restart the application server. For example, you do not need to restart Tomcat. Just refresh the page in the browser. In fact, the fundamental reason why there is no need to restart application servers such as Tomcat is because we can set a virtual directory in the configuration file of the application server, so that we can know the directory where the web project is located, so we can save the need to package and then re-publish to Server steps. Interested friends can come and take a look
    2024-02-26 0 1063
  • 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
  • mod_python 3.2.8 Chinese manual doc version
    mod_python 3.2.8 Chinese manual doc version
    mod_python 3.2.8 Chinese manual provides the Chinese manual of Mod_python 3.2.8, which is a good material for learning Mod_python. Interested friends can refer to it. mod_python originated from the Httpdapy project (1997). Much later Httpdapy was called mod_python because Httpdapy was not specific to the apache server. Httpdapy was designed to be cross-platform, but actually started primarily with Netscape servers (
    2024-01-25 0 923
  • python basic tutorial to lesson 60_python basic information word version
    python basic tutorial to lesson 60_python basic information word version
    Basic python tutorial to lesson 60. This tutorial introduces to you at the beginning, why to learn python, what are the advantages of python, etc. It will really make you want to learn python quickly. Why use Python as an introductory programming language? the reason is simple. Every language has its supporters and detractors. Go to Google "why python" and you will get a lot of results, such as wide range of applications, open source, active community, rich libraries, cross-platform, etc. You may also find
    2024-01-25 0 1072
  • Python introductory tutorial Chinese WORD version
    Python introductory tutorial Chinese WORD version
    Python is an efficient language. The reading and writing operations are very simple. Just like ordinary English, Python is an interpreted and executed language. We do not need to compile, we only need to write the code to run. Python is an oriented language. The language of objects, everything in Python is an object. Python is a very interesting language; interested friends can come and take a look.
    2024-01-25 0 656
  • Basic introduction to python unittest Chinese WORD version
    Basic introduction to python unittest Chinese WORD version
    Python comes with a unit test module, pyUnit is what we call: unittest; this document mainly talks about the basic introduction of python unittest; interested friends can come and take a look
    2024-01-25 0 862
  • Detailed explanation of Python operations on Excel Chinese WORD version
    Detailed explanation of Python operations on Excel Chinese WORD version
    This document mainly introduces how to read and write office excel through python, using the xlrd, xlwt and xlutils modules. It also demonstrates how to operate excel through the Tcl tcom package. Interested friends can come and take a look
    2024-01-25 0 1285
  • python matplotlib drawing Chinese WORD version
    python matplotlib drawing Chinese WORD version
    Matplotlib.pyplot is a method used to draw pictures, similar to the plot command in matlab, and its usage is basically the same. This document mainly talks about drawing with python matplotlib; interested friends can come and take a look.
    2024-01-25 0 1180
  • matplotlib function manual Chinese PDF version
    matplotlib function manual Chinese PDF version
    This document is a matplotlib function manual; I hope it will be helpful to everyone's study. Interested friends can come and take a look.
    2024-01-25 0 686
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!