目前分類:C/C++ 程式設計 (73)

瀏覽方式: 標題列表 簡短摘要
魚與熊掌可兼得: vim和source insight的配合使用

Bluelove1968 發表在 痞客邦 留言(0) 人氣()

Install C++ Boost

Bluelove1968 發表在 痞客邦 留言(0) 人氣()

C++資源之不完全導引(完整版)

來源:www.csdn.net

Bluelove1968 發表在 痞客邦 留言(1) 人氣()

這個範例主要是要提供一個函式SearchFile,透過他可以透過萬用字元的方式來找尋特定目錄下的檔案。
舉例來說,如果你想找出c:\windows下面的所有執行檔。您就可以透過這個函式找出來。

Bluelove1968 發表在 痞客邦 留言(0) 人氣()

指標函數和函數指標有什麼區別

1.這兩個概念都是簡稱,指標函數是指帶指標的函數,即本質是一個函數。我們知道函數都又返回類型(如果不返回值,則為無值型),只不過指標函數返回類型是某一類型的指標。其定義格式如下所示:

Bluelove1968 發表在 痞客邦 留言(6) 人氣()

typedef 知多少?
 

Bluelove1968 發表在 痞客邦 留言(0) 人氣()

何謂callback function

簡單的說,如果你使用了某個function,那麼你就是『call』了一個function。如果系統或是函式是要求你給一個function pointer,這個function pointer指到一個實際的函式(多半這個函式是你自己寫的)。然後它會在適當的時間呼叫此function,則此function就是所謂的 callback function。因為這個function是被『callback』了。

Bluelove1968 發表在 痞客邦 留言(0) 人氣()

Programming in C++ - User-Defined Types and Header Files / Graphics

Bluelove1968 發表在 痞客邦 留言(0) 人氣()

Selection Sorts

Bluelove1968 發表在 痞客邦 留言(0) 人氣()

One-Dimensional Arrays 

Bluelove1968 發表在 痞客邦 留言(0) 人氣()

Program Execution: How do I compile C++ code?

Bluelove1968 發表在 痞客邦 留言(0) 人氣()

How to Compile C++ with gcc

Dr. Manuel A. Pérez-Quiñones

Bluelove1968 發表在 痞客邦 留言(0) 人氣()

"Right-Left" Rule

Bluelove1968 發表在 痞客邦 留言(0) 人氣()

Introduction
Instructions for use

Bluelove1968 發表在 痞客邦 留言(0) 人氣()

Programming in C++ - In-Depth Look at Functions / Pointers

Bluelove1968 發表在 痞客邦 留言(0) 人氣()

Programming in C++ - Text Files, Strings, Random Numbers, and Member Function

Bluelove1968 發表在 痞客邦 留言(0) 人氣()

Using Sentinel Values

Bluelove1968 發表在 痞客邦 留言(0) 人氣()

Control Structures

Bluelove1968 發表在 痞客邦 留言(0) 人氣()

Type Conversion

Bluelove1968 發表在 痞客邦 留言(0) 人氣()

C++ syntax

The syntax of C++ is extremely critical. By definition, syntax is the rules governing the formation of statements in a programming language. In other words, it is the specific language (code) you use to turn algorithms into programs and specifc rules you have to follow when programming with C++. As you will find out, if you make one small mistake when writing code, the compiler will notify you of the syntax error when you try to run it. C++, like all languages, is very picky when it comes to syntax. Let's look at a simple example program written in C++.

Bluelove1968 發表在 痞客邦 留言(0) 人氣()