首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > C语言 >

scanf("%*s");这句话什么意思?解决方法

2013-03-20 
scanf(%*s)这句话什么意思?下面这句话什么意思?scanf(%*s)[解决办法]// 表示跳过字符串 不读入[解决

scanf("%*s");这句话什么意思?
下面这句话什么意思?

scanf("%*s");

[解决办法]

// 表示跳过字符串 不读入

[解决办法]
*的标准解释是滞后赋值
[解决办法]
Format Specification Fields: scanf and wscanf Functions
A format specification has the following form:

%[*] [width] [{h 
[解决办法]
 l 
[解决办法]
 I64 
[解决办法]
 L}]type

The format argument specifies the interpretation of the input and can contain one or more of the following: 

White-space characters: blank (' '); tab ('\t'); or newline ('\n'). A white-space character causes scanf to read, but not store, all consecutive white-space characters in the input up to the next non–white-space character. One white-space character in the format matches any number (including 0) and combination of white-space characters in the input.


Non–white-space characters, except for the percent sign (%). A non–white-space character causes scanf to read, but not store, a matching non–white-space character. If the next character in stdin does not match, scanf terminates.


Format specifications, introduced by the percent sign (%). A format specification causes scanf to read and convert characters in the input into values of a specified type. The value is assigned to an argument in the argument list. 
The format is read from left to right. Characters outside format specifications are expected to match the sequence of characters in stdin; the matching characters in stdin are scanned but not stored. If a character in stdin conflicts with the format specification, scanf terminates, and the character is left in stdin as if it had not been read.

When the first format specification is encountered, the value of the first input field is converted according to this specification and stored in the location that is specified by the first argument. The second format specification causes the second input field to be converted and stored in the second argument, and so on through the end of the format string.

An input field is defined as all characters up to the first white-space character (space, tab, or newline), or up to the first character that cannot be converted according to the format specification, or until the field width (if specified) is reached. If there are too many arguments for the given specifications, the extra arguments are evaluated but ignored. The results are unpredictable if there are not enough arguments for the format specification.



Each field of the format specification is a single character or a number signifying a particular format option. The type character, which appears after the last optional format field, determines whether the input field is interpreted as a character, a string, or a number. 
查MSDN是Windows程序员必须掌握的技能之一。
mk:@MSITStore:C:\MSDN98\98VS\2052\vccore.chm::/html/_crt_format_specification_fields_.2d_.scanf_and_wscanf_functions.htm
The simplest format specification contains only the percent sign and a type character (for example, %s). If a percent sign (%) is followed by a character that has no meaning as a format-control character, that character and the following characters (up to the next percent sign) are treated as an ordinary sequence of characters, that is, a sequence of characters that must match the input. For example, to specify that a percent-sign character is to be input, use %%.

An asterisk (*) following the percent sign suppresses assignment of the next input field, which is interpreted as a field of the specified type. The field is scanned but not stored.

[解决办法]
http://msdn.microsoft.com/en-us/library/kwwtf9ch.aspx

A format specification has the following form:

% [*] [width] [{h 
[解决办法]
 l 
[解决办法]
 ll 
[解决办法]
 I64 
[解决办法]
 L}]type

An asterisk (*) following the percent sign suppresses assignment of the next input field, which is interpreted as a field of the specified type. The field is scanned but not stored.

以上就是MSDN上查出来的,还是挺准确的。

http://www.cplusplus.com/reference/
http://en.cppreference.com/w/

这两个网站查起来也很方便。

基本上这些网站够了,再就是man和MSDN。

热点排行