注冊(cè) | 登錄讀書好,好讀書,讀好書!
讀書網(wǎng)-DuShu.com
當(dāng)前位置: 首頁(yè)出版圖書科學(xué)技術(shù)計(jì)算機(jī)/網(wǎng)絡(luò)軟件與程序設(shè)計(jì)BASIC/VB及其相關(guān)Visual Basic程序設(shè)計(jì)基礎(chǔ)教程(雙語(yǔ)版)

Visual Basic程序設(shè)計(jì)基礎(chǔ)教程(雙語(yǔ)版)

Visual Basic程序設(shè)計(jì)基礎(chǔ)教程(雙語(yǔ)版)

定 價(jià):¥18.00

作 者: 梁雅維 編著
出版社: 清華大學(xué)出版社
叢編項(xiàng):
標(biāo) 簽: Script

ISBN: 9787302224853 出版時(shí)間: 2010-10-01 包裝: 平裝
開本: 16開 頁(yè)數(shù): 112 字?jǐn)?shù):  

內(nèi)容簡(jiǎn)介

  《VisualBasic程序設(shè)計(jì)基礎(chǔ)教程(雙語(yǔ)版)》以微軟公司公開發(fā)布的免費(fèi)版VisualBasic2008(簡(jiǎn)稱VB2008)為工具,介紹了計(jì)算機(jī)程序設(shè)計(jì)的主要內(nèi)容。第1章描述了VB2008的綜合程序設(shè)計(jì)環(huán)境和該語(yǔ)言的基礎(chǔ)知識(shí)。第2~4章是計(jì)算機(jī)高級(jí)程序設(shè)計(jì)語(yǔ)言的通用知識(shí)。第5章討論如何編寫視窗類人機(jī)交互界面的程序。第6章引出事件驅(qū)動(dòng)的程序設(shè)計(jì)概念。附錄A中給出了《VisualBasic程序設(shè)計(jì)基礎(chǔ)教程(雙語(yǔ)版)》的習(xí)題解答。附錄B中給出了詞匯索引。最新版的VB2010與VB2008大同小異。

作者簡(jiǎn)介

暫缺《Visual Basic程序設(shè)計(jì)基礎(chǔ)教程(雙語(yǔ)版)》作者簡(jiǎn)介

圖書目錄

第1章 程序設(shè)計(jì)基礎(chǔ)
Programming Basics 1
1.1 Visual Basic歷史簡(jiǎn)介
Brief History of Visual Basic 1
1.2 VB 2008綜合程序設(shè)計(jì)環(huán)境
VB 2008 Integrated Development Environment (IDE) 2
1.3 兩個(gè)簡(jiǎn)單的程序設(shè)計(jì)實(shí)例
Two Simple Program Examples 2
1.4 常量、變量以及命名方法
Constants, Variables and Their Naming Rules 6
1.4.1 命名規(guī)則
Naming Rules 7
1.4.2 常量
Constants 7
1.4.3 保留字
Keywords 8
1.4.4 基本數(shù)據(jù)類型
Primitive Data Types 8
1.4.5 變量
Variables 9
1.5 表達(dá)式
Expressions 9
1.5.1 賦值語(yǔ)句
Assignment Command 10
1.5.2 算術(shù)運(yùn)算符
Arithmetic Operators 10
1.5.3 基本數(shù)學(xué)函數(shù)
Common mathematical functions 11
1.5.4 布爾表達(dá)式
Boolean expressions 11
1.5.5 關(guān)系表達(dá)式
Relational expressions 13
1.5.6 計(jì)算優(yōu)先級(jí)
Precedence of a mixed expression 13
1.6 第1章小結(jié)
Chapter 1 Summary 14
習(xí)題
Exercises 14
第2章 常用程序設(shè)計(jì)語(yǔ)句
Common Programming Commands 16
2.1 賦值語(yǔ)句
Assignment Command 16
2.2 輸入、輸出語(yǔ)句
Input and Output Commands 16
2.3 算術(shù)計(jì)算語(yǔ)句
Arithmetic Calculation Commands 17
2.4 選擇執(zhí)行語(yǔ)句
Selection Commands 18
2.4.1 If語(yǔ)句
If Command 18
2.4.2 嵌入If指令
Nested If Statement 21
2.4.3 選擇命令
Select ... Case 22
2.5 循環(huán)控制語(yǔ)句
Loop Control Commands 24
2.5.1 For語(yǔ)句
For Command 24
2.5.2 While語(yǔ)句
While Command 25
2.5.3 Do While語(yǔ)句
Do While Command 26
2.5.4 Do Until語(yǔ)句
Do Until Command 27
2.6 第2章小結(jié)
Chapter 2 Summary 27
習(xí)題
Exercises 27
第3章 簡(jiǎn)單的數(shù)據(jù)結(jié)構(gòu):數(shù)組
Simple Data Structure:Arrays 29
3.1 數(shù)組的概念
Concept of Arrays 29
3.2 一維數(shù)組
One Dimensional (1D) Arrays 29
3.3 二維數(shù)組
Two Dimensional (2D) Arrays 31
3.4 多維數(shù)組
Multi Dimensional Arrays 32
3.5 數(shù)組的特殊存儲(chǔ)方法
The Special Way to Store an Array 33
3.6 第3章小結(jié)
Chapter 3 Summary 34
習(xí)題
Exercises 34
第4章 子程序
Sub-Programs 36
4.1 子程序的概念
Concept of Sub-Programs 36
4.2 過(guò)程的設(shè)計(jì)和調(diào)用
Procedures Design and Calling 36
4.3 函數(shù)的設(shè)計(jì)和調(diào)用
Functions Design and Calling 38
4.4 嵌套子程序調(diào)用和遞歸
Nested Sub-program Calling and Recursion 39
4.5 類型
Class 40
4.6 第4章小結(jié)
Chapter 4 Summary 42
習(xí)題
Exercises 42

第5章 圖形化用戶界面控件
Graphical User Interface (GUI) Controls 46
5.1 輸入、輸出控件
Input and Output (I/O) Controls 46
5.2 選擇控件
Selection Controls 48
5.3 時(shí)間控件
Timing Controls 51
5.4 圖形控件
Graphical Controls 53
5.5 網(wǎng)絡(luò)控件
Web Related Controls 57
5.6 第5章小結(jié)
Chapter 5 Summary 58
習(xí)題
Exercises 58
第6章 事件驅(qū)動(dòng)的程序設(shè)計(jì)概念
Event Driven Programming Concept 63
6.1 程序啟動(dòng)事件
Program Loading Event 63
6.2 輸入內(nèi)容改變事件
Input Content Changing Event 64
6.3 鼠標(biāo)單擊事件
Mouse Clicking Event 65
6.4 鼠標(biāo)移動(dòng)事件
Mouse Moving Event 67
6.5 時(shí)間事件
Timing Event 68
6.6 第6章小結(jié)
Chapter Summary 70
習(xí)題
Exercises 70
附錄A 習(xí)題解答
Exercises Solutions 73
A.1 第1章題解
Chapter 1 Exercise Solutions 73
A.2 第2章題解
Chapter 2 Exercise Solutions 74
A.3 第3章題解
Chapter 3 Exercise Solutions 77
A.4 第4章題解
Chapter 4 Exercise Solutions 78
A.5 第5章題解
Chapter 5 Exercise Solutions 79
A.6 第6章題解
Chapter 6 Exercise Solutions 86
附錄B 詞匯索引
Index 110
參考文獻(xiàn)

本目錄推薦

掃描二維碼
Copyright ? 讀書網(wǎng) www.dappsexplained.com 2005-2020, All Rights Reserved.
鄂ICP備15019699號(hào) 鄂公網(wǎng)安備 42010302001612號(hào)