美文网首页
(linux kernel)【实现类型print函数,可变参数】

(linux kernel)【实现类型print函数,可变参数】

作者: 月下蓑衣江湖夜雨 | 来源:发表于2020-11-03 15:50 被阅读0次

代码

stdarg.h

#ifndef _STDARG_H
#define _STDARG_H

typedef char *va_list;

/* Amount of space required in an argument list for an arg of type TYPE.
   TYPE may alternatively be an expression whose type is used.  */

#define __va_rounded_size(TYPE)  \
  (((sizeof (TYPE) + sizeof (int) - 1) / sizeof (int)) * sizeof (int))

#ifndef __sparc__
#define va_start(AP, LASTARG)                       \
 (AP = ((char *) &(LASTARG) + __va_rounded_size (LASTARG)))
#else
#define va_start(AP, LASTARG)                       \
 (__builtin_saveregs (),                        \
  AP = ((char *) &(LASTARG) + __va_rounded_size (LASTARG)))
#endif

void va_end (va_list);      /* Defined in gnulib */
#define va_end(AP)

#define va_arg(AP, TYPE)                        \
 (AP += __va_rounded_size (TYPE),                   \
  *((TYPE *) (AP - __va_rounded_size (TYPE))))

#endif /* _STDARG_H */

string.h

#ifndef _STRING_H_
#define _STRING_H_

#ifndef NULL
#define NULL ((void *) 0)
#endif

#ifndef _SIZE_T
#define _SIZE_T
typedef unsigned int size_t;
#endif

extern char * strerror(int errno);

/*
 * This string-include defines all string functions as inline
 * functions. Use gcc. It also assumes ds=es=data space, this should be
 * normal. Most of the string-functions are rather heavily hand-optimized,
 * see especially strtok,strstr,str[c]spn. They should work, but are not
 * very easy to understand. Everything is done entirely within the register
 * set, making the functions fast and clean. String instructions have been
 * used through-out, making for "slightly" unclear code :-)
 *
 *      (C) 1991 Linus Torvalds
 */
 
extern inline char * strcpy(char * dest,const char *src)
{
__asm__("cld\n"
    "1:\tlodsb\n\t"
    "stosb\n\t"
    "testb %%al,%%al\n\t"
    "jne 1b"
    ::"S" (src),"D" (dest));
return dest;
}

static inline char * strncpy(char * dest,const char *src,int count)
{
__asm__("cld\n"
    "1:\tdecl %2\n\t"
    "js 2f\n\t"
    "lodsb\n\t"
    "stosb\n\t"
    "testb %%al,%%al\n\t"
    "jne 1b\n\t"
    "rep\n\t"
    "stosb\n"
    "2:"
    ::"S" (src),"D" (dest),"c" (count));
return dest;
}

extern inline char * strcat(char * dest,const char * src)
{
__asm__("cld\n\t"
    "repne\n\t"
    "scasb\n\t"
    "decl %1\n"
    "1:\tlodsb\n\t"
    "stosb\n\t"
    "testb %%al,%%al\n\t"
    "jne 1b"
    ::"S" (src),"D" (dest),"a" (0),"c" (0xffffffff));
return dest;
}

static inline char * strncat(char * dest,const char * src,int count)
{
__asm__("cld\n\t"
    "repne\n\t"
    "scasb\n\t"
    "decl %1\n\t"
    "movl %4,%3\n"
    "1:\tdecl %3\n\t"
    "js 2f\n\t"
    "lodsb\n\t"
    "stosb\n\t"
    "testb %%al,%%al\n\t"
    "jne 1b\n"
    "2:\txorl %2,%2\n\t"
    "stosb"
    ::"S" (src),"D" (dest),"a" (0),"c" (0xffffffff),"g" (count)
    );
return dest;
}

extern inline int strcmp(const char * cs,const char * ct)
{
register int __res ;
__asm__("cld\n"
    "1:\tlodsb\n\t"
    "scasb\n\t"
    "jne 2f\n\t"
    "testb %%al,%%al\n\t"
    "jne 1b\n\t"
    "xorl %%eax,%%eax\n\t"
    "jmp 3f\n"
    "2:\tmovl $1,%%eax\n\t"
    "jl 3f\n\t"
    "negl %%eax\n"
    "3:"
    :"=a" (__res):"D" (cs),"S" (ct));
return __res;
}

static inline int strncmp(const char * cs,const char * ct,int count)
{
register int __res ;
__asm__("cld\n"
    "1:\tdecl %3\n\t"
    "js 2f\n\t"
    "lodsb\n\t"
    "scasb\n\t"
    "jne 3f\n\t"
    "testb %%al,%%al\n\t"
    "jne 1b\n"
    "2:\txorl %%eax,%%eax\n\t"
    "jmp 4f\n"
    "3:\tmovl $1,%%eax\n\t"
    "jl 4f\n\t"
    "negl %%eax\n"
    "4:"
    :"=a" (__res):"D" (cs),"S" (ct),"c" (count));
return __res;
}

static inline char * strchr(const char * s,char c)
{
register char * __res ;
__asm__("cld\n\t"
    "movb %%al,%%ah\n"
    "1:\tlodsb\n\t"
    "cmpb %%ah,%%al\n\t"
    "je 2f\n\t"
    "testb %%al,%%al\n\t"
    "jne 1b\n\t"
    "movl $1,%1\n"
    "2:\tmovl %1,%0\n\t"
    "decl %0"
    :"=a" (__res):"S" (s),"0" (c));
return __res;
}

static inline char * strrchr(const char * s,char c)
{
register char * __res; 
__asm__("cld\n\t"
    "movb %%al,%%ah\n"
    "1:\tlodsb\n\t"
    "cmpb %%ah,%%al\n\t"
    "jne 2f\n\t"
    "movl %%esi,%0\n\t"
    "decl %0\n"
    "2:\ttestb %%al,%%al\n\t"
    "jne 1b"
    :"=d" (__res):"0" (0),"S" (s),"a" (c));
return __res;
}

extern inline int strspn(const char * cs, const char * ct)
{
register char * __res;
__asm__("cld\n\t"
    "movl %4,%%edi\n\t"
    "repne\n\t"
    "scasb\n\t"
    "notl %%ecx\n\t"
    "decl %%ecx\n\t"
    "movl %%ecx,%%edx\n"
    "1:\tlodsb\n\t"
    "testb %%al,%%al\n\t"
    "je 2f\n\t"
    "movl %4,%%edi\n\t"
    "movl %%edx,%%ecx\n\t"
    "repne\n\t"
    "scasb\n\t"
    "je 1b\n"
    "2:\tdecl %0"
    :"=S" (__res):"a" (0),"c" (0xffffffff),"0" (cs),"g" (ct)
    );
return __res-cs;
}

extern inline int strcspn(const char * cs, const char * ct)
{
register char * __res;
__asm__("cld\n\t"
    "movl %4,%%edi\n\t"
    "repne\n\t"
    "scasb\n\t"
    "notl %%ecx\n\t"
    "decl %%ecx\n\t"
    "movl %%ecx,%%edx\n"
    "1:\tlodsb\n\t"
    "testb %%al,%%al\n\t"
    "je 2f\n\t"
    "movl %4,%%edi\n\t"
    "movl %%edx,%%ecx\n\t"
    "repne\n\t"
    "scasb\n\t"
    "jne 1b\n"
    "2:\tdecl %0"
    :"=S" (__res):"a" (0),"c" (0xffffffff),"0" (cs),"g" (ct)
    );
return __res-cs;
}

extern inline char * strpbrk(const char * cs,const char * ct)
{
register char * __res ;
__asm__("cld\n\t"
    "movl %4,%%edi\n\t"
    "repne\n\t"
    "scasb\n\t"
    "notl %%ecx\n\t"
    "decl %%ecx\n\t"
    "movl %%ecx,%%edx\n"
    "1:\tlodsb\n\t"
    "testb %%al,%%al\n\t"
    "je 2f\n\t"
    "movl %4,%%edi\n\t"
    "movl %%edx,%%ecx\n\t"
    "repne\n\t"
    "scasb\n\t"
    "jne 1b\n\t"
    "decl %0\n\t"
    "jmp 3f\n"
    "2:\txorl %0,%0\n"
    "3:"
    :"=S" (__res):"a" (0),"c" (0xffffffff),"0" (cs),"g" (ct)
    );
return __res;
}

extern inline char * strstr(const char * cs,const char * ct)
{
register char * __res ;
__asm__("cld\n\t" \
    "movl %4,%%edi\n\t"
    "repne\n\t"
    "scasb\n\t"
    "notl %%ecx\n\t"
    "decl %%ecx\n\t"    /* NOTE! This also sets Z if searchstring='' */
    "movl %%ecx,%%edx\n"
    "1:\tmovl %4,%%edi\n\t"
    "movl %%esi,%%eax\n\t"
    "movl %%edx,%%ecx\n\t"
    "repe\n\t"
    "cmpsb\n\t"
    "je 2f\n\t"     /* also works for empty string, see above */
    "xchgl %%eax,%%esi\n\t"
    "incl %%esi\n\t"
    "cmpb $0,-1(%%eax)\n\t"
    "jne 1b\n\t"
    "xorl %%eax,%%eax\n\t"
    "2:"
    :"=a" (__res):"0" (0),"c" (0xffffffff),"S" (cs),"g" (ct)
    );
return __res;
}

extern inline int strlen(const char * s)
{
register int __res ;
__asm__("cld\n\t"
    "repne\n\t"
    "scasb\n\t"
    "notl %0\n\t"
    "decl %0"
    :"=c" (__res):"D" (s),"a" (0),"0" (0xffffffff));
return __res;
}

extern char * ___strtok;

extern inline char * strtok(char * s,const char * ct)
{
register char * __res ;
__asm__("testl %1,%1\n\t"
    "jne 1f\n\t"
    "testl %0,%0\n\t"
    "je 8f\n\t"
    "movl %0,%1\n"
    "1:\txorl %0,%0\n\t"
    "movl $-1,%%ecx\n\t"
    "xorl %%eax,%%eax\n\t"
    "cld\n\t"
    "movl %4,%%edi\n\t"
    "repne\n\t"
    "scasb\n\t"
    "notl %%ecx\n\t"
    "decl %%ecx\n\t"
    "je 7f\n\t"         /* empty delimeter-string */
    "movl %%ecx,%%edx\n"
    "2:\tlodsb\n\t"
    "testb %%al,%%al\n\t"
    "je 7f\n\t"
    "movl %4,%%edi\n\t"
    "movl %%edx,%%ecx\n\t"
    "repne\n\t"
    "scasb\n\t"
    "je 2b\n\t"
    "decl %1\n\t"
    "cmpb $0,(%1)\n\t"
    "je 7f\n\t"
    "movl %1,%0\n"
    "3:\tlodsb\n\t"
    "testb %%al,%%al\n\t"
    "je 5f\n\t"
    "movl %4,%%edi\n\t"
    "movl %%edx,%%ecx\n\t"
    "repne\n\t"
    "scasb\n\t"
    "jne 3b\n\t"
    "decl %1\n\t"
    "cmpb $0,(%1)\n\t"
    "je 5f\n\t"
    "movb $0,(%1)\n\t"
    "incl %1\n\t"
    "jmp 6f\n"
    "5:\txorl %1,%1\n"
    "6:\tcmpb $0,(%0)\n\t"
    "jne 7f\n\t"
    "xorl %0,%0\n"
    "7:\ttestl %0,%0\n\t"
    "jne 8f\n\t"
    "movl %0,%1\n"
    "8:"
    :"=b" (__res),"=S" (___strtok)
    :"0" (___strtok),"1" (s),"g" (ct)
    );
return __res;
}

static inline void * memcpy(void * dest,const void * src, int n)
{
__asm__("cld\n\t"
    "rep\n\t"
    "movsb"
    ::"c" (n),"S" (src),"D" (dest)
    );
return dest;
}

extern inline void * memmove(void * dest,const void * src, int n)
{
if (dest<src)
__asm__("cld\n\t"
    "rep\n\t"
    "movsb"
    ::"c" (n),"S" (src),"D" (dest)
    );
else
__asm__("std\n\t"
    "rep\n\t"
    "movsb"
    ::"c" (n),"S" (src+n-1),"D" (dest+n-1)
    );
return dest;
}

static inline int memcmp(const void * cs,const void * ct,int count)
{
register int __res ;
__asm__("cld\n\t"
    "repe\n\t"
    "cmpsb\n\t"
    "je 1f\n\t"
    "movl $1,%%eax\n\t"
    "jl 1f\n\t"
    "negl %%eax\n"
    "1:"
    :"=a" (__res):"0" (0),"D" (cs),"S" (ct),"c" (count)
    );
return __res;
}

extern inline void * memchr(const void * cs,char c,int count)
{
register void * __res ;
if (!count)
    return NULL;
__asm__("cld\n\t"
    "repne\n\t"
    "scasb\n\t"
    "je 1f\n\t"
    "movl $1,%0\n"
    "1:\tdecl %0"
    :"=D" (__res):"a" (c),"D" (cs),"c" (count)
    );
return __res;
}

static inline void * memset(void * s,char c,int count)
{
__asm__("cld\n\t"
    "rep\n\t"
    "stosb"
    ::"a" (c),"D" (s),"c" (count)
    );
return s;
}

#endif

vsprintf.c

/*
 *  linux/kernel/vsprintf.c
 *
 *  (C) 1991  Linus Torvalds
 */

/* vsprintf.c -- Lars Wirzenius & Linus Torvalds. */
/*
 * Wirzenius wrote this portably, Torvalds fucked it up :-)
 */
// Lars Wirzenius 是Linus的好友,在Helsinki大学的时候曾同处一间办公室。在1991年夏季开发linux时,
// Linus当时对C语言还不是很熟悉,还不会使用可变参数列表函数功能。因此Lars Wirzenius就为他编写了
// 这段用于内核显示信息的代码。他后来(1998年)承认这段代码中有一个bug,直到1994年才有人发现,
// 并予以纠正。这个bug是在使用*作为输出域宽度时,忘记递增指针跳过这个星号了。在本代码中这个bug
// 还仍然存在(163行)。他的个人主页是http://liw.iki.fi/liw/

// 标准参数头文件,以宏的形式定义变量参数列表。主要说明了一个类型(va_list)和
// 三个宏(va_start,va_arg和va_end),用于vsprintf,vprintf,vfprintf函数。
#include <stdarg.h>
#include <string.h> 

/* we use this so that we can do without the ctype library */
#define is_digit(c) ((c) >= '0' && (c) <= '9')

// 将字符数字转换成整数。输入是数字串指针的指针,返回是结果的数值,另外指针将前移。
static int skip_atoi(const char **s)
{
    int i=0;

    while (is_digit(**s))
        i = i*10 + *((*s)++) - '0';     // 这里导致指针前移
    return i;
}

// 定义常用符号常数
#define ZEROPAD 1       /* pad with zero */
#define SIGN    2       /* unsigned/signed long */
#define PLUS    4       /* show plus */
#define SPACE   8       /* space if plus */
#define LEFT    16      /* left justified */
#define SPECIAL 32      /* 0x */
#define SMALL   64      /* use 'abcdef' instead of 'ABCDEF' */

// 除法操作,输入:n为被除数,base为除数;结果:n为商,函数返回值为余数。
#define do_div(n,base) ({ \
int __res; \
__asm__("divl %4":"=a" (n),"=d" (__res):"0" (n),"1" (0),"r" (base)); \
__res; })

// 将整数转换为指定进制的字符串。
// 输入:num-整数;base-进制;size-字符串长度;precision-数字长度(精度);type-类型选项。
// 输出:str字符串指针
static char * number(char * str, int num, int base, int size, int precision, int type)
{
    char c,sign,tmp[36];
    const char *digits="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
    int i;

    // 根据类型定义字母集,默认是大写字母
    if (type&SMALL) digits="0123456789abcdefghijklmnopqrstuvwxyz";
    // 如果类型指出要左调整(靠左边界),则屏蔽类型中的填零标志。
    // TODO: 这句没看懂?? 为什么要把最低位置为0
    if (type&LEFT) type &= ~ZEROPAD;
    // 本程序只能处理的进制范围:2-36
    if (base<2 || base>36)
        return 0;
    // TODO: 这句跟LEFT相关??
    c = (type & ZEROPAD) ? '0' : ' ' ;
    if (type&SIGN && num<0) {
        sign='-';
        num = -num;
    } else
        sign=(type&PLUS) ? '+' : ((type&SPACE) ? ' ' : 0);
    // 如果是带符号的,字符串宽度就减一
    if (sign) size--;
    if (type&SPECIAL) {
        if (base==16) size -= 2;    // 16进制需要减2,用于前面的0x
        else if (base==8) size--;   // 8进制的减1,因为前面的0
    }
    i=0;
    if (num==0)
        tmp[i++]='0';
    else while (num!=0)
        tmp[i++]=digits[do_div(num,base)];
    if (i>precision) precision=i;       // 若字符个数大于精度值,精度值扩展为字符个数
    size -= precision;                  // 宽度再减去用于存放数值字符的个数
    // 将转换结果放在str中,如果类型中没有填零(ZEROPAD)和左靠齐标志,
    // 则在str中首先填放剩余宽度值指出的空格数。若需要带符号位,则存入符号
    if (!(type&(ZEROPAD+LEFT)))
        while(size-->0)
            *str++ = ' ';
    if (sign)
        *str++ = sign;
    // 如果是特殊转换的处理,8进制和16进制分别填入0/0x/0X
    if (type&SPECIAL) {
        if (base==8)
            *str++ = '0';
        else if (base==16) {
            *str++ = '0';
            *str++ = digits[33];    // 'x' or 'X'
        }
    }
    // 如果类型么有左靠齐标志,则在剩余的宽度中存放c字符(‘0’或者空格)
    if (!(type&LEFT))
        while(size-->0)
            *str++ = c;
    // 若i存有数值num的数字个数,若数字个数小于精度值,则str中放入 精度值-i 个'0'
    while(i<precision--)
        *str++ = '0';
    // 将数值转换好的数字字符填入str中,共i个
    while(i-->0)
        *str++ = tmp[i];
    // 若宽度值仍大于零,则表达类型标志中有左靠齐标志,则在剩余宽度中放入空格
    while(size-->0)
        *str++ = ' ';
    return str;
}

// 格式化输出
int vsprintf(char *buf, const char *fmt, va_list args)
{
    int len;
    int i;
    char * str;     // 用于存放转换过程中的字符串
    char *s;
    int *ip;

    int flags;      /* flags to number() */

    int field_width;    /* width of output field */
    int precision;      /* min. # of digits for integers; max
                   number of chars for from string */
    int qualifier;      /* 'h', 'l', or 'L' for integer fields */

    // 扫描格式字符串,对于不是 % 的就依次存入str
    for (str=buf ; *fmt ; ++fmt) {
        if (*fmt != '%') {
            *str++ = *fmt;
            continue;
        }
        // 取得格式指示字符串中的标志域,并将标志常量放入flags变量中
        /* process flags */
        flags = 0;
        repeat:
            ++fmt;      /* this also skips first '%' */
            switch (*fmt) {
                case '-': flags |= LEFT; goto repeat;
                case '+': flags |= PLUS; goto repeat;
                case ' ': flags |= SPACE; goto repeat;
                case '#': flags |= SPECIAL; goto repeat;
                case '0': flags |= ZEROPAD; goto repeat;
                }
        // 取当前参数数字段宽度域值,放入field_width变量中,如果宽度域中是数值则直接取其为宽度值。
        // 如果宽度域中是字符'*',表示下一个参数指定宽度。因此调用va_arg取宽度值。若此时宽度值
        // 小于0,则该负数表示其带有标志域'-'标志(左靠齐),因此还需要在标志变量中填入该标志,并
        // 将字段宽度值取为其绝对值。
        /* get field width */
        field_width = -1;
        if (is_digit(*fmt))
            field_width = skip_atoi(&fmt);
        else if (*fmt == '*') {
            /* it's the next argument */
            field_width = va_arg(args, int);        // 这里有个bug,应插入++fmt。// TODO: 不懂
            if (field_width < 0) {
                field_width = -field_width;
                flags |= LEFT;
            }
        }

        // 取格式转换串的精度域,并放入precision变量中。精度域开始的标志是'.'.
        // 其处理过程与上面宽度域的类似。如果精度域中是数值则直接取其为精度值。如果精度域中是
        // 字符'*',表示下一个参数指定精度。因此调用va_arg取精度值。若此时宽度值小于0,则将
        // 字段精度值取为0.
        /* get the precision */
        precision = -1;
        if (*fmt == '.') {
            ++fmt;  
            if (is_digit(*fmt))
                precision = skip_atoi(&fmt);
            else if (*fmt == '*') {
                /* it's the next argument */
                precision = va_arg(args, int);
            }
            if (precision < 0)
                precision = 0;
        }

        /* get the conversion qualifier */
        qualifier = -1;
        if (*fmt == 'h' || *fmt == 'l' || *fmt == 'L') {
            qualifier = *fmt;
            ++fmt;
        }

        // 分析转换指示符
        switch (*fmt) {
            // ‘c’ 表示对应参数应是字符。此时如果标志域表明不是左靠齐,则该字段前面
            // 放入'宽度域值-1'个空格字符,然后再放入参数字符。如果宽度域大于0,
            // 则表示为左靠齐,则在参数字符后面添加'宽度值-1'个空格字符
        case 'c':
            if (!(flags & LEFT))
                while (--field_width > 0)
                    *str++ = ' ';
            *str++ = (unsigned char) va_arg(args, int);
            while (--field_width > 0)
                *str++ = ' ';
            break;

            // 's'表示对应参数是字符串。首先取参数字符串的长度,若其超过了精度域值,
            // 则扩展精度域=字符串长度。此时如果标志域表明不是左靠齐,则该字段前放入
            // '宽度值-字符串长度'个空格字符。然后再放入参数字符串。如果宽度域还大于0,
            // 则表示为左靠齐,则在参数字符串后面添加'宽度值-字符串长度'个空格字符。
        case 's':
            s = va_arg(args, char *);
            len = strlen(s);
            if (precision < 0)
                precision = len;
            else if (len > precision)
                len = precision;

            if (!(flags & LEFT))
                while (len < field_width--)
                    *str++ = ' ';
            for (i = 0; i < len; ++i)
                *str++ = *s++;
            while (len < field_width--)
                *str++ = ' ';
            break;

            // 'o'表示8进制,通过number函数处理
        case 'o':
            str = number(str, va_arg(args, unsigned long), 8,
                field_width, precision, flags);
            break;

            // 'p'表示一个指针类型,此时若该参数没有设置宽度域,默认宽度域为8
            // 并且需要添零,然后用number函数处理
        case 'p':
            if (field_width == -1) {
                field_width = 8;
                flags |= ZEROPAD;
            }
            str = number(str,
                (unsigned long) va_arg(args, void *), 16,
                field_width, precision, flags);
            break;

            // 'x'-转成16进制
        case 'x':
            flags |= SMALL;
        case 'X':
            str = number(str, va_arg(args, unsigned long), 16,
                field_width, precision, flags);
            break;

            // 'd' & 'i'  表示带符号整数;'u' 表示无符号整数
        case 'd':
        case 'i':
            flags |= SIGN;
        case 'u':
            str = number(str, va_arg(args, unsigned long), 10,
                field_width, precision, flags);
            break;

            // 'n'-表示要把到目前为止转换输出字符数保存到对应参数指针指定的位置中。
            // 首先利用va_arg()取得该参数指针,然后将已经转换好的字符数存到指向的位置
        case 'n':
            ip = va_arg(args, int *);
            *ip = (str - buf);
            break;

            // 若格式转换不是 % ,则表示格式字符串有错,直接将一个“%”写入输出串中。
            // 如果格式转换符的位置还有字符,则也直接将该字符写入输入串中,并返回继续处理
            // 格式字符串,否则表示已经处理到格式字符串的结尾处,退出循环。
        default:
            if (*fmt != '%')
                *str++ = '%';
            if (*fmt)
                *str++ = *fmt;
            else
                --fmt;
            break;
        }
    }
    *str = '\0';        // 字符串结尾字符:'\0'
    return str-buf;     // 返回转换好的长度值
}

编译命令及效果

gcc vsprintf.c
./a.out

策略:只解读,不修改!

相关文章

  • (linux kernel)【实现类型print函数,可变参数】

    代码 stdarg.h string.h vsprintf.c 编译命令及效果 策略:只解读,不修改!

  • Swift函数

    概览函数定义隐式返回返回元组(实现多值返回)函数参数参数标签默认参数值可变参数输入输出参数函数重载内联函数函数类型...

  • Go语言可变参数

    可变参数 参数数量可变的函数称为可变参数函数 在声明可变参数函数时,需要在参数列表的最后一个参数类型之前加上省略符...

  • 可变参数

    可变参数:适用于参数个数不确定,类型确定的情况,java把可变参数当做数组处理。如下所示:print()方法,用于...

  • python-函数的可变参数

    可变参数定义为 def 函数名(*可变参数名),可变参数类型为元组,注意在函数内不可修改。但可以通过for循环迭代...

  • python控制流和函数参数、匿名函数和闭包

    @[toc] 函数的参数传递 不可变类型传值 如数、字符串、元组 可变类型传引用 如列表、字典、集合 参数类型 必...

  • Python基础知识之难点备忘

    零散知识点 print输出到日志文件 函数注解 函数默认参数为可变类型 想进一步了解编程开发相关知识,与我一同成长...

  • 0505-0512学习总结

    上周在学习函数,终于知道return和print的区别以及他们应该放置的位置,函数的循环体。以及可变参数和不可变参...

  • kotlin 常用语法

    kotlin的基础语法 函数定义 函数定义使用关键字 fun,参数格式为:参数 : 类型 可变长参数函数 函数的变...

  • swift 个人笔记(变量. 函数)

    常见的数据类型 初探 函数 返回元祖, 实现多返回值 参数标签 扩展 知识点. 默认参数值, 可变参数 输入输出参...

网友评论

      本文标题:(linux kernel)【实现类型print函数,可变参数】

      本文链接:https://www.haomeiwen.com/subject/ejnbvktx.html