프로그램/mysql

printf 에서 동적 변수 지정.

(주)CKBcorp., 2011. 11. 16. 12:03
반응형

mysql 쪽을 좀 찾아보다가, 우연히 알게 된 사실이다. 

http://dev.mysql.com/doc/refman/5.0/en/mysql-fetch-row.html 

이걸 보면, 예제에 이런 문장이 있다.
 printf("[%.*s] ", (int) lengths[i], row[i] ? row[i] : "NULL");

지금까지 쓰면서도 몰랐던 거다. man printf 로 알게 된 거다.

------------------

The arguments must correspond properly (after type promotion) with the conversion specifier. By default, the arguments are used in the order given, where each '*' and each conversion specifier asks for the next argument (and it is an error if insufficiently many arguments are given). One can also specify explicitly which argument is taken, at each place where an argument is required, by writing "%m$" instead of '%' and "*m$" instead of '*', where the decimal integer m denotes the position in the argument list of the desired argument, indexed starting from 1. Thus,

printf("%*d", width, num);
and
printf("%2$*1$d", width, num);
are equivalent. The second style allows repeated references to the same argument. The C99 standard does not include the style using '$', which comes from the Single UNIX Specification. If the style using '$' is used, it must be used throughout for all conversions taking an argument and all width and precision arguments, but it may be mixed with "%%" formats which do not consume an argument. There may be no gaps in the numbers of arguments specified using '$'; for example, if arguments 1 and 3 are specified, argument 2 must also be specified somewhere in the format string.

요약 정리하면, printf에는 '', '' 라는 특수문자가 존재해서,
'*' -> 프린트 포멧 문자열에 동적 변수를 적용한다.
'$' -> 프린트 포멧 문자열 이후의 변수 중 임의의 변수를 적용할 수 있다.

예를 들어, 

pritnf( " %0*d" , 5, 12 ); 

의 결과는 "00012" 가 되고( %05d 의 효과) , 

pritnf( " %4$d" , 5, 12, 34, 56 ); 

의 결과는 "56" 이 된다. ( 4번째 인자를 %d의 값으로 지정 .)  

이상끝. 
 

printf()
반응형