字串類的設計 用c,C 題目 字串類的設計 一 定義點字串(string)類,包含存放字串的字元陣列和字串

時間 2021-05-04 01:10:25

1樓:匿名_熱心網友

public class stack

public void push(int x)public int pop()

}void main()

{stack s=new stack();

s.push(10);

2樓:

參考 string cstring

3樓:

有寫費時間,不願寫,給你頂頂

4樓:chelsea_藍焱

看看stl中string類

5樓:

/*太多了我也不想寫,這是在網上找的半吊子程式*/

#include

#include

#include

class mystring

~mystring()

}char* getstr() const

mystring& operator = ( char* str)

bool operator < (const mystring& other)

bool operator > (const mystring& other)

int getlength() const

mystring& concat(const mystring& other)

private:

char* m_pdata;

int m_ilen;

};int main()

// 連線

mystring1.concat( mystring2 );

cout << mystring1.getstr() << endl;

return 0;}

6樓:匿名使用者

都有函式可以直接呼叫

c++題目  字串類的設計 一、定義點字串(string)類,包含存放字串的字元陣列和字串 10

7樓:匿名使用者

#include

#include

using namespace std;

class student

void setname(char na[ ])};class userdatabase

void add_record(char *nu,char *na);

};void userdatabase::add_record(char *nu,char *na)

int main()

return 0;

c++程式設計字串類

8樓:

如果不懂,加入群151988677,找千里,大家一起**

#include

#include

#include

class string

~string()

string operator+(const char *b);

string operator-(const char *b);

char * findsub(const char *b);

int seeksub(const char *b);

int replacesub(const char *b,const char *c);

int size()

friend ostream & operator<<

a.str[a.len]='\0';

return in;}};

string::string(const char *a)

string::string(string &a)

string string::operator+(const char *b)

string string::operator-(const char *b)

int string::seeksub(const char *b)

void main()

設計一個字串類(class string;),要求儘量模仿c++的class string;而不是封裝c-字串類。

9樓:匿名使用者

////說明:以下**在vc++ 6.0下編譯通過

//#include "stdafx.h"

#include

#include

using namespace std;

/********************************************

下面是person,student,teacher三個類的申明

********************************************/

//定義一個表示人的類person

class person

;//定義一個student類,該類是從person類繼承過來的

class student:public person

;//定義一個teacher類,該類也是從person類繼承過來的

class teacher:public person

;/********************************************

下面是person,student,teacher三個類的定義

********************************************/

/*************person類的定義開始***************/

//定義person類的建構函式,在這裡對成員變數進行初始化

person::person()

;//定義person類的列印函式,用於列印person類的的成員資訊

void person::display();

10樓:韋正海

什麼意思?

你是要實現string類?

這個..滿大街都是

太簡單了吧

11樓:鄭慶佳

隨便找一下c++stl裡面string類的實現**就copy一下就ok啦

12樓:looky雲

您是三班還是四班的?要是朱穎老師的學生,她以前要求做過這個作業的。p311的(5)跟這個差不多

編寫字串處理程式,用C C急謝謝

程式 及執行截圖如下 include using namespace std int main 編寫完成了一個c c 程式,如何做一個介面出來?使用vc的mfc做一個介面就可以,建立新工程時候有工程嚮導,你直接生成一個對話方塊的應用程式就可以了。找個mfc速成類的書當個參考,有那種速成教程的,你搜搜...

用C 對字串的排序,C 對字元陣列排序

你都快畢業了而且學的東西還蠻多的,像這樣的問題還發網上求救我真無語,自己做不出來嘛?感覺自己什麼也不會,感覺好迷茫,什麼語言只是懂一點點,是你自己沒有努力吧,如果想趕快就業那不妨學學php吧反正你學過mysql 有c語言基礎php上手很快 vc6.0下編譯執行,結果無誤。include includ...

c 改錯!編寫string類,實現字串的輸入,字串的輸出及長度的輸出(Code Blocks編譯)

改好了,看一下注釋 include using namespace std define n 10 class cstring 少了括號 void strinput void strlength cout void strcout int main 修改如下 include using namesp...