-
Notifications
You must be signed in to change notification settings - Fork 25
/
ch02s04.html
10 lines (10 loc) · 6.12 KB
/
ch02s04.html
1
2
3
4
5
6
7
8
9
10
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>4. 赋值</title><link rel="stylesheet" href="styles.css" type="text/css" /><meta name="generator" content="DocBook XSL Stylesheets V1.73.2" /><link rel="start" href="index.html" title="Linux C编程一站式学习" /><link rel="up" href="ch02.html" title="第 2 章 常量、变量和表达式" /><link rel="prev" href="expr.variable.html" title="3. 变量" /><link rel="next" href="expr.expression.html" title="5. 表达式" /></head><body><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">4. 赋值</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="expr.variable.html">上一页</a> </td><th width="60%" align="center">第 2 章 常量、变量和表达式</th><td width="20%" align="right"> <a accesskey="n" href="expr.expression.html">下一页</a></td></tr></table><hr /></div><div class="sect1" lang="zh-cn" xml:lang="zh-cn"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a id="id2708536"></a>4. 赋值</h2></div></div></div><p>定义了变量之后,我们要把值存到它们所表示的存储空间里,可以用赋值(Assignment)<a id="id2708544" class="indexterm"></a>语句实现:</p><pre class="programlisting">char firstletter;
int hour, minute;
firstletter = 'a'; /* give firstletter the value 'a' */
hour = 11; /* assign the value 11 to hour */
minute = 59; /* set minute to 59 */</pre><p>注意变量一定要先声明后使用,编译器必须先看到变量声明,才知道<code class="literal">firstletter</code>、<code class="literal">hour</code>和<code class="literal">minute</code>是变量名,各自代表一块存储空间。另外,变量声明中的类型表明这个变量代表多大的一块存储空间,这样编译器才知道如何读写这块存储空间。还要注意,这里的等号不表示数学里的相等关系,和1+1=2的等号是不同的,这里的等号表示赋值。在数学上不会有<code class="literal">i=i+1</code>这种等式成立,而在C语言中表示把变量<code class="literal">i</code>的存储空间中的值取出来,再加上1,得到的结果再存回<code class="literal">i</code>的存储空间中。再比如,在数学上<code class="literal">a=7</code>和<code class="literal">7=a</code>是一样的,而在C语言中后者是不合法的。总结一下:定义一个变量,就是分配一块存储空间并给它命名;给一个变量赋值,就是把一个值保存到这块存储空间中。变量的定义和赋值也可以一步完成,这称为变量的初始化(Initialization)<a id="id2707008" class="indexterm"></a>,例如要达到上面代码的效果也可以这样写:</p><pre class="programlisting">char firstletter = 'a';
int hour = 11, minute = 59;</pre><p>在初始化语句中,等号右边的值叫做Initializer<a id="id2707025" class="indexterm"></a>,例如上面的<code class="literal">'a'</code>、11和59。注意,<span class="emphasis"><em>初始化是一种特殊的声明,而不是一种赋值语句</em></span>。就目前来看,先定义一个变量再给它赋值和定义这个变量的同时给它初始化所达到的效果是一样的,C语言的很多语法规则既适用于赋值也适用于初始化,但在以后的学习中你也会了解到它们之间的不同,请在学习过程中注意总结赋值和初始化的相同和不同之处。</p><p>如果在纸上“<span class="quote">跑</span>”一个程序(每个初学编程的人都要练这项基本功),可以用一个框表示变量的存储空间,在框的外边标上变量名,在框里记上它的值,如下图所示。</p><div class="figure"><a id="id2707065"></a><p class="title"><b>图 2.1. 在纸上表示变量</b></p><div class="figure-contents"><div><img src="images/expr.variable.png" alt="在纸上表示变量" /></div></div></div><br class="figure-break" /><p>你可以用不同形状的框表示不同类型的变量,这样可以提醒你给变量赋的值必须符合它的类型。如果所赋的值和变量的类型不符会导致编译器报警告或报错(这是一种语义错误),例如:</p><pre class="programlisting">int hour, minute;
hour = "Hello."; /* WRONG ! */
minute = "59"; /* WRONG !! */</pre><p>注意第3个语句,把<code class="literal">"59"</code>赋给<code class="literal">minute</code>看起来像是对的,但是类型不对,字符串不能赋给整型变量。</p><p>既然可以为变量的存储空间赋值,就应该可以把值取出来用,现在我们取出这些变量的值用<code class="literal">printf</code>打印:</p><pre class="programlisting">printf("Current time is %d:%d", hour, minute);</pre><p>变量名用在等号左边表示赋值,而用在<code class="literal">printf</code>中表示把它的存储空间中的值取出来替换在那里。不同类型的变量所占的存储空间大小是不同的,数据表示方式也不同,变量的最小存储单位是字节(Byte)<a id="id2708898" class="indexterm"></a>,在C语言中<code class="literal">char</code>型变量占一个字节,其它类型的变量占多少字节在不同平台上有不同的规定,将在<a class="xref" href="ch15.html#type">第 15 章 <i>数据类型详解</i></a>详细讨论。</p></div><div class="navfooter"><hr /><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="expr.variable.html">上一页</a> </td><td width="20%" align="center"><a accesskey="u" href="ch02.html">上一级</a></td><td width="40%" align="right"> <a accesskey="n" href="expr.expression.html">下一页</a></td></tr><tr><td width="40%" align="left" valign="top">3. 变量 </td><td width="20%" align="center"><a accesskey="h" href="index.html">起始页</a></td><td width="40%" align="right" valign="top"> 5. 表达式</td></tr></table></div></body></html>