C語言常用庫函數實現

來源:互聯網
上載者:User

標籤:控制   end   變數   rcp   signed   函數返回   style   多少   數組   

1.memcpy函數

memcpy 函數用於 把資源記憶體(src所指向的記憶體地區) 拷貝到目標記憶體(dest所指向的記憶體地區);拷貝多少個?有一個size變數控制拷貝的位元組數;

函數原型:void *memcpy(void *dest, void *src, unsigned int count);

用法:可以拷貝任何類型的對象,因為函數的參數類型是void*(未定義類型指標),也就是說傳進去的實參可以是int*,short*,char*等等,但是由於函數拷貝的過程是一個位元組一個位元組的拷貝的,所以實際操作的時候要把void*強制轉化為char*,這樣在指標加的時候才會保證每次加一個位元組;

#include <stdio.h>#include <iostream>#include <assert.h>using namespace std;/********memcpy()函數原型為:void* memcpy(void* dest, void* src, size_t n); 返回指向dest的空類型指標*********///返回void* 類型的原因,是為了使用鏈式表達,即strlen((char*)(memcpy(dest,src,n)),這樣可以直接計算dest的長度,是程式碼更簡潔/****注意void* 指標的使用,即該函數允許傳入任何類型的指標資料****/void* memcpy(void *dest, void *src, size_t n){    assert((dest != NULL) && (src != NULL));    char *dest_t = (char*)dest;                  //轉換成字元型一個個複製拷貝,由於函數拷貝的過程是一個位元組一個位元組的拷貝的,                                                 //所以實際操作的時候要把void*強制轉化為char*,    char *src_f = (char*)src;                    //這樣在指標加的時候才會保證每次加一個位元組    while (n-- > 0)    {        *(dest_t++) = *(src_f++);    }    return dest;//void* 一定要返回一個值(指標),這個和void不太一樣!函數返回指向dest的指標}int main(){    int a[5] = { 0, 1, 2 };    int *b = new int[3];    void *c = memcpy(b, a, 3 * sizeof(int));  //sizeof()可以用類型做參數,也可以傳入實際的變數    for (int i = 0; i < 3; i++)            //數組做參數時,不退化為指標,統計的是數組整體佔據的記憶體    {        cout << b[i] << endl;    }    int *temp = (int*)c;    temp++;    cout << endl;    cout << *temp << endl;    return 0;}

注1:與strcpy相比,memcpy並不是遇到‘\0‘就結束,而是一定會拷貝完n個位元組。

    2:如果目標數組dest本身已有資料,執行memcpy()後,將覆蓋原有資料(最多覆蓋n)。

//memcpy用來做記憶體拷貝,你可以拿它拷貝任何資料類型的對象,可以指定拷貝的資料長度;  char a[100], b[50];  memcpy(b, a,sizeof(b)); //注意如用sizeof(a),會造成b的記憶體位址溢出。  strcpy就只能拷貝字串了,它遇到‘\0‘就結束拷貝;例:  char a[100], b[50];      strcpy(a,b);
2.strcpy函數
#include <stdio.h>#include <iostream>using namespace std;/********strcpy()函數原型為:char *strcpy(char* dest, const char *src); 返回指向dest的指標*********///返回char* 類型的原因,是為了使用鏈式表達,即strlen(strcpy(dest,src)),這樣可以直接計算dest的長度,是程式碼更簡潔char* strcpy(char *dest, char *src){    if(dest == NULL || src == NULL)        return NULL;    char *res = dest;//儲存原始dst的首地址    while(*src != ‘\0‘)    {        *dest = *src;        dest++;        src++;    }    *dest = ‘\0‘;    return res;}int main(){    char *src = "hello world";    char *dest = new char;    //strcpy(dest,src);    int len = strlen(strcpy(dest,src));    cout << len << endl;    cout << dest << endl;    return 0;}

 

C語言常用庫函數實現

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.