學C 第乙個專案實現

2021-06-05 04:30:16 字數 1337 閱讀 6776

aaaa專案的實現

檔案

#ifndef _date_h

#define _date_h

class date;

#endif

檔案#include "stdafx.h"

#include "date.h"

#include "process.h"

date::date()

date::date(int year,int month,int day)

void date::print()const

#include "date.h"

#ifndef _person_h

#define _person_h

class person;

#endif

檔案#include "stdafx.h"

#include "person.h"

#include "date.h"

person::person()

檔案#ifndef _personset_h

#define _personset_h

#include "person.h"

class personset;

#endif

檔案#include "stdafx.h"

#include "personset.h"

#include "person.h"

#include "date.h"

personset::personset(int i_size)

personset::~personset()

void personset::add(person& element)

_capacity*=2;

delete temp;

}_elements[_size++]=&element;

_index=_size;

}person&  personset::nextelement()

person& personset::removeelement()

_capacity/=2;

delete temp;

}return *p;

}person& personset::removeelement(int index)

_capacity/=2;

delete temp;

}return *p;

}int personset:: size()

void personset::print()

}void personset::reset()

第乙個專案

沒有搞懂自己領導的意思,不清楚這個專案到底如何推進 相關方沒有摸清楚,漏了好幾個,導致自己第一次開會前很忐忑,因為有一些人是第一次溝通 不敢開口問自己領導,這個專案的思路是什麼,一直是自己瞎琢磨。所以說,溝通很重要,真的很重要。不要做一些無用功,該說就說,該問就問。不輸錢不輸地的,怕什麼 專案沒有所...

2009 7 28 第乙個專案

在 有三天了,這個這兩天看了下文件,感覺有點模糊,不是很有把握的那種。對於那個管線系統的一些概念把握的還是很不准,心理沒底啊。那些東西不能含糊的,工作一定要認真。一絲不苟,多思考總結。上午去開了第乙個會,說是開會,其實就是幾個人在一起聊了一會兒。因為這個專案牽涉到幾個公司,所以另外兩家公司的人在 爭...

第乙個django,django專案

win10下django的實現 可能是由於環境變數設定的原因,在執行時只要使用django的內建方法等時就要給出其全路徑 我的python安裝在d盤,為 d python2.7 django安裝在python的安裝目錄下 我是在e盤下建立了projects資料夾,在該資料夾下建立django專案來學...