最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

基于getline()函數(shù)的深入理解

 更新時(shí)間:2013年05月26日 16:32:22   作者:  
本篇文章是對(duì)getline()函數(shù)的使用進(jìn)行了詳細(xì)的分析介紹,需要的朋友參考下

我在網(wǎng)上搜了半天getline()函數(shù),大多針對(duì)C++的,重載函數(shù)比較多,云里霧里的,而且沒(méi)有實(shí)例,反正就是沒(méi)有自己所需要的getline()函數(shù)。所以,自己在Linux下man了一把,并做了測(cè)試。getline()函數(shù)的功能是從文件中獲取行信息,即每次讀取一行信息。

因?yàn)槲沂褂胓etline()函數(shù)的目的是獲取本地網(wǎng)卡信息,即eth0的信息,從而判斷啟動(dòng)機(jī)子時(shí)是否查了網(wǎng)線(本來(lái)可以從驅(qū)動(dòng)里做,但應(yīng)用層可以搞定,就不想多做處理了,諒解)。

//函數(shù)原型
#define _GNU_SOURCE
#include <stdio.h>
      ssize_t getline(char **lineptr, size_t *n, FILE *stream);
      ssize_t getdelim(char **lineptr, size_t *n, int delim, FILE*stream);
[root@localhost for_test]# cat dev
Inter-|   Receive                                                | Transmit
 face |bytes   packets errs drop fifo frame compressed multicast|bytes    packets errs drop fifo colls carriercompressed
   lo:       0       0   0    0    0    0          0         0        0      0    0    0   0     0       0         0
 eth0:  53311     230    0    0   0     0          0        0     5370      33   0    0    0    0       0          0
[root@localhost for_test]# cat eth0_dev.c

復(fù)制代碼 代碼如下:

#include <stdio.h>
#include <string.h>
int main(void)
{
 FILE *fp = NULL;
    int cnt = -1;
    int len = 0;
 char buf1[16] = {0}, buf2[16] = {0}, buf3[16] = {0};
    char *line = NULL;
    char *pstr = NULL; 
 fp = fopen("./dev", "rb");
 if(NULL == fp)
 {
  printf("open /proc/net/dev err!\n");
  return -1;
 }
    while(-1 != (cnt = getline(&line, &len, fp)))//讀取行信息,'\n'為換行標(biāo)志
    {
        pstr = strstr(line, "eth0");//查找改行中是否有"eth0"的字符串
        if(NULL != pstr)
        {
   //printf("%s\n", pstr);
   sscanf(pstr, "%s\t%s\t%s", buf1, buf2, buf3);
   printf("buf1:%s  buf2:%s  buf3:%s\n", buf1, buf2, buf3);
   break;
        }
    }
    //確??臻g的釋放
    if(line)
    {
        free(line);
    }
    fclose(fp);
 return 0;
}

[root@localhost for_test]#gcc eth0_dev.c
[root@localhost for_test]# ./a.out
buf1:eth0:  buf2:53311 buf3:230
[root@localhost for_test]# man getline
復(fù)制代碼 代碼如下:

DESCRIPTION
       getline()  reads  an entire line from stream, storing the address of the buffer containing the text into *lineptr.  The buffer is null-
       terminated and includes the newline character, if one was found.
       If *lineptr is NULL, then getline() will allocate a buffer for storing the line, which should be freed by the user  program.   Alterna-
       tively,  before calling getline(), *lineptr can contain a pointer to a malloc()-allocated buffer *n bytes in size. If the buffer is not
       large enough to hold the line, getline() resizes it with realloc(), updating *lineptr and *n as necessary. In either case,  on  a  suc-
       cessful call, *lineptr and *n will be updated to reflect the buffer address and allocated size respectively.
       getdelim()  works  like  getline(), except a line delimiter other than newline can be specified as the delimiter argument. As with get-
       line(), a delimiter character is not added if one was not present in the input before end of file was reached.
RETURN VALUE
       On success, getline() and getdelim() return the number of characters read, including the delimiter character,  but  not  including  the
       terminating null byte. This value can be used to handle embedded null bytes in the line read.
       Both functions return -1  on failure to read a line (including end of file condition).
ERRORS
       EINVAL Bad parameters (n or lineptr is NULL, or stream is not valid).
EXAMPLE
       #define _GNU_SOURCE
       #include <stdio.h>
       #include <stdlib.h>
       int main(void)
       {
            FILE * fp;
            char * line = NULL;
            size_t len = 0;
            ssize_t read;
            fp = fopen("/etc/motd", "r");
            if (fp == NULL)
                 exit(EXIT_FAILURE);
            while ((read = getline(&line, &len, fp)) != -1) {
                 printf("Retrieved line of length %zu :\n", read);
                 printf("%s", line);
            }
            if (line)
                 free(line);
            return EXIT_SUCCESS;
       }
CONFORMING TO
       Both getline() and getdelim() are GNU extensions.  They are available since libc 4.6.27.

相關(guān)文章

  • C++ std::bind用法詳解

    C++ std::bind用法詳解

    這篇文章主要介紹了C++ std::bind用法詳解,本篇文章通過(guò)簡(jiǎn)要的案例,講解了該項(xiàng)技術(shù)的了解與使用,以下就是詳細(xì)內(nèi)容,需要的朋友可以參考下
    2021-09-09
  • 為什么獲取環(huán)境變量getenv小心有坑

    為什么獲取環(huán)境變量getenv小心有坑

    這篇文章主要介紹了獲取環(huán)境變量getenv小心有坑問(wèn)題及解決,具有很好的參考價(jià)值,希望對(duì)大家有所幫助,如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2025-03-03
  • 字符串的組合算法問(wèn)題的C語(yǔ)言實(shí)現(xiàn)攻略

    字符串的組合算法問(wèn)題的C語(yǔ)言實(shí)現(xiàn)攻略

    這篇文章主要介紹了字符串的組合算法問(wèn)題的C語(yǔ)言實(shí)現(xiàn)攻略,是根據(jù)ACM總結(jié)的經(jīng)典算法問(wèn)題,需要的朋友可以參考下
    2015-08-08
  • C語(yǔ)言中時(shí)間戳轉(zhuǎn)換成時(shí)間字符串的方法

    C語(yǔ)言中時(shí)間戳轉(zhuǎn)換成時(shí)間字符串的方法

    在PE格式里有個(gè)字段是文件的創(chuàng)建時(shí)間戳,我想把轉(zhuǎn)成字符串,今天小編給大家分享一段代碼,可以比較直觀的看出,需要的的朋友參考下
    2017-02-02
  • C數(shù)據(jù)結(jié)構(gòu)之雙鏈表詳細(xì)示例分析

    C數(shù)據(jù)結(jié)構(gòu)之雙鏈表詳細(xì)示例分析

    以下是對(duì)c語(yǔ)言中的雙鏈表進(jìn)行了詳細(xì)的分析介紹,需要的朋友可以過(guò)來(lái)參考下
    2013-08-08
  • Qt實(shí)現(xiàn)蘋(píng)果狀態(tài)切換按鈕

    Qt實(shí)現(xiàn)蘋(píng)果狀態(tài)切換按鈕

    這篇文章主要為大家詳細(xì)介紹了Qt實(shí)現(xiàn)蘋(píng)果狀態(tài)切換按鈕,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2020-08-08
  • C++泛型編程函(數(shù)模板+類(lèi)模板)

    C++泛型編程函(數(shù)模板+類(lèi)模板)

    這篇文章主要介紹了C++泛型編程函(數(shù)模板+類(lèi)模板),類(lèi)模板與函數(shù)模板一樣也會(huì)經(jīng)過(guò)兩次編譯,在此文中重點(diǎn)區(qū)分一下類(lèi)模板與模板類(lèi),函數(shù)模板與模板函數(shù)的概念,泛型編程是C++開(kāi)發(fā)的一大精髓,靈活地運(yùn)用泛型編程,需要的朋友可以參考一下
    2022-02-02
  • C++中的三種繼承public,protected,private詳細(xì)解析

    C++中的三種繼承public,protected,private詳細(xì)解析

    我們已經(jīng)知道,在基類(lèi)以private方式被繼承時(shí),其public和protected成員在子類(lèi)中變?yōu)閜rivate成員。然而某些情況下,需要在子類(lèi)中將一個(gè)或多個(gè)繼承的成員恢復(fù)其在基類(lèi)中的訪問(wèn)權(quán)限
    2013-09-09
  • 從零學(xué)習(xí)cmake構(gòu)建系統(tǒng)

    從零學(xué)習(xí)cmake構(gòu)建系統(tǒng)

    這篇文章主要為大家介紹了從零學(xué)習(xí)cmake構(gòu)建系統(tǒng)詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪
    2023-02-02
  • operator new在C++中的各種寫(xiě)法總結(jié)

    operator new在C++中的各種寫(xiě)法總結(jié)

    這篇文章并不是一個(gè)綜合的手冊(cè),而是一個(gè)C++中各種內(nèi)存分配方法的概述。它面向已經(jīng)很熟悉C++語(yǔ)言的讀者
    2013-09-09

最新評(píng)論

城口县| 湘潭市| 尉犁县| 雷州市| 南江县| 互助| 左云县| 扶沟县| 鹤峰县| 天峨县| 栾川县| 庄河市| 北票市| 稻城县| 田东县| 左云县| 易门县| 铜陵市| 延边| 琼结县| 龙门县| 高邑县| 临沂市| 喜德县| 尉犁县| 白沙| 新巴尔虎左旗| 宝坻区| 友谊县| 沂源县| 云阳县| 霍州市| 大同县| 莱西市| 全州县| 浏阳市| 大余县| 炎陵县| 安远县| 东明县| 肥乡县|