C 新手上路第一天

2021-07-25 09:51:15 字數 983 閱讀 4496

第一天寫了一些入門的**,簡單的用了建構函式和複製建構函式

clock 類

#include

"stdafx.h"

#include

//cout cin 都是這個檔案裡的還要加入命名空間

using

namespace

std;

class

clock ;

//建構函式的實現

clock

::clock(

intnewh

,int

newm

, int

news)

//無參建構函式的實現

clock

::clock()

//成員函式的實現

void

clock

::showclock()

//主函式,程式唯一入口,呼叫類中的成員

intmain()

複製建構函式的使用方法

#include

"stdafx.h"

#include

using

namespace

std;

class

point ;

//實現建構函式

point

::point(

intxx

,intyy)

//實現拷貝建構函式

point

::point(

point&p

) //實現其他成員函式

intpoint

::getx()

intpoint

::gety()

//形參為point類物件的函式

void

fun1(

pointp)

//返回值為point類物件的函式

point

fun2()

intmain()

PHP新手上路(一)

php是一種易於學習和使用的伺服器端指令碼語言。只需要很少的程式設計知識你就能使用php建立乙個真正互動的web站點。本教程並不想讓你完全了解這種語言,只是能使你盡快加入開發動態web站點的行列。我假定你有一些html 或者html編輯器 的基本知識和一些程式設計思想。1.簡介 如果你的機器解決了2...

C 新手上路第六天,指標

include stdafx.h include using namespace std intmain 指標陣列 include stdafx.h include using namespace std intmain 定義陣列,矩陣的第一行 intline2 定義陣列,矩陣的第二行 intlin...

白帽子新手上路(一)

這篇文章我在tsrc徵文的時候發表過,考慮到tsrc的文章並不對外界公開,我又把它發表在這裡,如果有在tsrc看到過,沒關係,也是我發的。這是一篇針對想成為白帽子的的文章,關於白帽子,借用百科中的描述 白帽子,描述的是正面的黑客,他可以識別計算機系統或網路系統中的安全漏洞,但並不會惡意去利用,而是公...