<?xml version="1.0" encoding="GBK" ?>
<rss version="2.0" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:dcterms="http://purl.org/dc/terms/">
 <channel>
  	  <title><![CDATA[yunlebeijing2008的博客]]></title>
	  <link>http://yunlebeijing2008.blog.163.com</link>
	  <description><![CDATA[结交五湖四海的朋友 我是你的朋友.]]></description>
	  <language>zh-CN</language>
	  <pubDate>Thu, 3 Jul 2008 18:41:01 +0800</pubDate>
	  <lastBuildDate>Thu, 3 Jul 2008 18:41:01 +0800</lastBuildDate>
	  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
	  <generator><![CDATA[NetEase Space]]></generator>
	  <managingEditor><![CDATA[yunlebeijing2008]]></managingEditor>
	  <webMaster><![CDATA[yunlebeijing2008]]></webMaster>
		  <ttl>120</ttl>
	  <image>
	  	<title><![CDATA[yunlebeijing2008的博客]]></title>
	  	<url>http://ava.blog.163.com/photo/8f853bWhRU_GeWyjRLa9ew==/180988410025120641.jpg</url>
	  	<link>http://yunlebeijing2008.blog.163.com</link>
	  </image>
  <item>
  	<title><![CDATA[C#]]></title>	
    <link>http://yunlebeijing2008.blog.163.com/blog/static/61032481200851351043438</link>
    <description><![CDATA[<div><P>11111:&nbsp; C#在线人数<BR>&nbsp;&nbsp;&nbsp; protected void Page_Load(object sender, EventArgs e)<BR>&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; labelOnlineNum.Text=string.Format("当前在线人数：{0}人", Application["counter"]);<BR>&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp; </P>
<P>&nbsp;</P>
<P><BR>&nbsp;&nbsp;&nbsp; void Application_Start(object sender, EventArgs e) <BR>&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Application["counter"] = 0;</P>
<P>&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; void Application_End(object sender, EventArgs e) <BR>&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // 在出现未处理的错误时运行的代码</P>
<P>&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; void Application_Error(object sender, EventArgs e) <BR>&nbsp;&nbsp;&nbsp; { <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // 在出现未处理的错误时运行的代码</P>
<P>&nbsp;&nbsp;&nbsp; }</P>
<P>&nbsp;&nbsp;&nbsp; void Session_Start(object sender, EventArgs e) <BR>&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Application.Lock();<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Application["counter"] = (int)Application["counter"] + 1;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Application.UnLock();</P>
<P><BR>&nbsp;&nbsp;&nbsp; }</P>
<P>&nbsp;&nbsp;&nbsp; void Session_End(object sender, EventArgs e) <BR>&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Application.Lock();<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Application["counter"] = (int)Application["counter"] -1;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Application.UnLock();</P>
<P><BR>&nbsp;&nbsp;&nbsp; }</P>
<P>&nbsp;</P>
<P>1witch (DropDownList1.SelectedItem.Text)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; case"计科系":<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; DropDownList2.Items.Clear();<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; DropDownList2.Items.Add("计应用");<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; DropDownList2.Items.Add("软件技术");<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; DropDownList2.Items.Add("网络");<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; DropDownList2.Items.Add("多媒体");<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; DropDownList2.Items.Add("计信管");<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; DropDownList2.Items.Add("计科学专业");<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; break;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; case"电气系":<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; DropDownList2.Items.Clear();<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; DropDownList2.Items.Add("供用电");<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; DropDownList2.Items.Add("电缆专业");<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; break;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; case"汽车系":<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; DropDownList2.Items.Clear();<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; DropDownList2.Items.Add("汽检");<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; DropDownList2.Items.Add("汽修专业");<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; break;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</P>
<P>&nbsp;</P>
<P>&lt;head&gt;<BR>&nbsp;&nbsp;&nbsp; &lt;title&gt;网页自动弹出消息框&lt;/title&gt;<BR>&nbsp;&nbsp;&nbsp; &lt;script language="javascript"type="text/javascript"&gt;<BR>&nbsp;&nbsp;&nbsp; &lt;!--<BR>&nbsp;&nbsp;&nbsp; function Welcome()<BR>&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp; var i=0;<BR>&nbsp;&nbsp;&nbsp;&nbsp; var msg="请输入姓名：";<BR>&nbsp;&nbsp;&nbsp;&nbsp; while(!i)<BR>&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; var defaultmsg="朋友"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; var name;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; name=prompt(msg,defaultmsg);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; i=confirm("确定你输入的名字是\""+name+"\"吗？");<BR>&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp;&nbsp; document.write(name+",欢迎你的到来！");<BR>&nbsp;&nbsp;&nbsp;&nbsp; return true;<BR>&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp; --&gt;<BR>&nbsp;&nbsp;&nbsp; &lt;/script&gt;<BR>&lt;/head&gt;<BR>&lt;body onload="Welcome();"&gt;<BR>&lt;h3&gt;无&lt;/h3&gt;</P>
<P>&lt;/body&gt;</P>
<P>&nbsp;</P>
<P>using System.Data.SqlClient;</P>
<P>&nbsp;</P>
<P>namespace WindowsApplication2<BR>{&nbsp; <BR>&nbsp;&nbsp;&nbsp; public partial class Form1 : Form<BR>&nbsp;&nbsp;&nbsp; {&nbsp;&nbsp; SqlDataAdapter adapter;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; DataTable table;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; public Form1()<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; InitializeComponent();<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</P>
<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; private void Form1_Load(object sender, EventArgs e)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {</P>
<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</P>
<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; private void radioButton2_CheckedChanged(object sender, EventArgs e)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</P>
<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {</P>
<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</P>
<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; private void radioButton1_CheckedChanged(object sender, EventArgs e)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {</P>
<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</P>
<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; private void button1_Click(object sender, EventArgs e)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; string tableName ="MyTable1";<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; string connectionString = Properties.Settings.Default.mydatabaseConnectionString;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; SqlConnection conn = new SqlConnection(connectionString);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; adapter = new SqlDataAdapter("select*from" + tableName, conn);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; SqlCommandBuilder builder = new SqlCommandBuilder(adapter);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; adapter.InsertCommand = builder.GetInsertCommand();<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; adapter.DeleteCommand = builder.GetDeleteCommand();<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; adapter.UpdateCommand = builder.GetUpdateCommand();<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; table = new DataTable();<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; adapter.Fill(table);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; dataGridView1.DataSource = table;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</P>
<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; private void button2_Click(object sender, EventArgs e)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; dataGridView1.EndEdit();<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; try<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; adapter.Update(table);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; MessageBox.Show("保存成功！");<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; catch (SqlException err)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; MessageBox.Show(err.Message, "保存失败！");<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp; }<BR>}</P>
<P>&nbsp;</P>
<P>string mystr = "你所选的内容是:";<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; int checkedNumber = checkedListBox1.CheckedItems.Count;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (checkedNumber == 0)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; MessageBox.Show("你还没有选择任何爱好!");<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; else<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; for (int i = 0; i &lt; checkedNumber; i++)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; mystr += checkedListBox1.CheckedItems[i] + ";";<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (mystr[mystr.Length - 1] == ';')<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; mystr = mystr.Substring(0, mystr.Length - 1);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; mystr += ";";<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; MessageBox.Show(mystr);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp; }<BR>}</P>
<P>&nbsp;</P>
<P>string mystr = "你所选的内容是:";<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; int checkedNumber = checkedListBox1.CheckedItems.Count;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (checkedNumber == 0)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; MessageBox.Show("你还没有选择任何爱好!");<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; else<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; for (int i = 0; i &lt; checkedNumber; i++)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; mystr += checkedListBox1.CheckedItems[i] + ";";<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (mystr[mystr.Length - 1] == ';')<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; mystr = mystr.Substring(0, mystr.Length - 1);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; mystr += ";";<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; MessageBox.Show(mystr);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp; }<BR>}</P>
<P>&nbsp;</P>
<P>&nbsp;private void buttonAdd_Click(object sender, EventArgs e)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; string addedText = textBoxAdd.Text;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (addedText == "")<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; MessageBox.Show("没有输入所要添加的课程！");<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (listBox1.Items.Contains(addedText))<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; MessageBox.Show("课程&lt;" + addedText + "&gt; 在列表中已存在！");<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; else<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; listBox1.Items.Add(addedText);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; } <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; textBoxAdd.Clear();<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</P>
<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; private void buttonDelete_Click(object sender, EventArgs e)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; while (listBox1.SelectedIndex &gt;= 0)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; listBox1.Items.RemoveAt(listBox1.SelectedIndex);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp; }<BR>}</P>
<P>&nbsp;</P>
<P>&nbsp;private void timer1_Tick(object sender, EventArgs e)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; label1.Text = DateTime.Now.ToLongTimeString();<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</P>
<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; private void button1_Click(object sender, EventArgs e)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; timer1.Enabled = !timer1.Enabled;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; button1.Text = timer1.Enabled ?"停止":"开始";<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp; }</P>
<P>&nbsp;</P>
<P>if (label1.Text == "")<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; MessageBox.Show("你还没有填写姓名！");<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; label1.Focus();<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return;</P>
<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; label6.Visible = true;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; label6.Text = string.Format("新加入的信息如下:\n" + "姓名:{0}\n性别:{1}\n年龄:{2}\n密码:{3}\n爱好:{4}",<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; textBox1.Text,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; textBox2.Text,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; textBox3.Text,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; textBox4.Text,<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; textBox5.Text);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</P>
<P>&nbsp;if (e.KeyCode == Keys.F1)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; MessageBox.Show("你现在按的是F1键");<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (e.Control == true &amp;&amp; e.Shift == true &amp;&amp; e.Alt == true)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; MessageBox.Show("你现在按的是ctrl+shift+alt!");</P>
<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (e.Control == true)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; switch (e.KeyCode)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; case Keys.A:<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; MessageBox.Show("你现在按的是Ctrl+A");<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; break;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</P>
<P>&nbsp;</P>
<P>public abstract class Animal //<BR>&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; public abstract void Eat();<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; public Animal()<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Console.WriteLine("hello ,animal");<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; public Animal(string name)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Console.WriteLine("hello,my name is" + name + "!");<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp; public class Cat:Animal<BR>&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; public Cat()<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Console.WriteLine("hello,cat");<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</P>
<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; public override void Eat()<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Console.WriteLine("eating mouse");<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //throw new Exception("The method or operation is not implemented.");<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</P>
<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp; public class Mouse : Animal<BR>&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; public Mouse()<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Console.WriteLine("hello,mouse");<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; public override void Eat()<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Console.WriteLine("eating cream");<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp; public class Tiger : Animal<BR>&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; public Tiger()<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Console.WriteLine("hello,tiger");<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; public override void Eat()<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Console.WriteLine("eating cat");<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp; }<BR>//{<BR>//&nbsp;&nbsp;&nbsp; throw new Exception("The method or operation is not implemented.");<BR>//}</P>
<P>//{<BR>//&nbsp;&nbsp;&nbsp; throw new Exception("The method or operation is not implemented.");<BR>//}<BR>&nbsp;&nbsp;&nbsp; class Program<BR>&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; static void Main(string[] args)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Cat c = new Cat();<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; c.Eat();<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Mouse m = new Mouse();<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; m.Eat();<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Tiger t = new Tiger( );<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; t.Eat( );<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Console.ReadLine( );<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp; }</P>
<P>&nbsp;</P>
<P>&nbsp;class Animal<BR>&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; public Animal()<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Console.WriteLine("animal eating any");<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; public virtual void Eat()<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Console.WriteLine("hello,animal,eating");<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp; class Cat : Animal<BR>&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; public override void Eat()<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; base.Eat();<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Console.WriteLine("cat eating mouse");<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp; class Mouse : Animal<BR>&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; public override void Eat()<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; base.Eat();<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Console.WriteLine("mouse eating cream");<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp; class Tiger : Animal<BR>&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; public override void Eat()<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; base.Eat();<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Console.WriteLine("tiger eating cat");<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp; }</P>
<P>&nbsp;&nbsp;&nbsp; class Program<BR>&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; static void Main(string[] args)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Animal a = new Animal();<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; a.Eat();<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Cat c = new Cat();<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; c.Eat();<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Mouse m = new Mouse();<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; m.Eat();<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Tiger t = new Tiger();<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; t.Eat();<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Console.ReadLine();<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp; }</P>
<P>&nbsp;</P>
<P>17 public abstract class flyer<BR>&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; public void name()<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Console.WriteLine("hello!");<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; public abstract void fly();<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp; public class feiji : flyer<BR>&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </P>
<P>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; public override void fly()<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Console.WriteLine("feiji is depend on oil");<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //{</P>
<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //&nbsp;&nbsp;&nbsp; throw new Exception("The method or operation is not implemented.");<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //}<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp; public class bird : flyer<BR>&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; public override void fly()<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Console.WriteLine("bird fly depend on force");</P>
<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //{<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //&nbsp;&nbsp;&nbsp; throw new Exception("The method or operation is not implemented.");<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //}<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp; }</P>
<P>&nbsp;&nbsp;&nbsp; </P>
<P>&nbsp;&nbsp;&nbsp; class Program<BR>&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; static void Main(string[] args)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; feiji f=new feiji();<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; f.fly();<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; bird b=new bird();<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; b.fly();<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Console.ReadLine();<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp; }</P>
<P>&nbsp;public abstract class flyer<BR>&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; public void name()<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Console.WriteLine("hello!");<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; public abstract void fly();<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp; public class feiji : flyer<BR>&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </P>
<P>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; public override void fly()<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Console.WriteLine("feiji is depend on oil");<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //{</P>
<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //&nbsp;&nbsp;&nbsp; throw new Exception("The method or operation is not implemented.");<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //}<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp; public class bird : flyer<BR>&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; public override void fly()<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Console.WriteLine("bird fly depend on force");</P>
<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //{<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //&nbsp;&nbsp;&nbsp; throw new Exception("The method or operation is not implemented.");<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //}<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp; }</P>
<P>&nbsp;&nbsp;&nbsp; </P>
<P>&nbsp;&nbsp;&nbsp; class Program<BR>&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; static void Main(string[] args)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; feiji f=new feiji();<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; f.fly();<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; bird b=new bird();<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; b.fly();<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Console.ReadLine();<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp; }</P>
<P>19DialogResult result = folderBrowserDialog1.ShowDialog();<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (result == DialogResult.OK)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; textBox1.Text = folderBrowserDialog1.SelectedPath;</P>
<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; else<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; textBox1.Text = "";<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</P>
<P>&nbsp;</P>
<P>20 DialogResult result = openFileDialog1.ShowDialog();<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (result == DialogResult.OK)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; textBox1.Text = openFileDialog1.FileName;</P>
<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; else<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; textBox1.Text = "";<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</P>
<P>&nbsp;</P>
<P>30using System.Drawing.Drawing2D;</P>
<P>&nbsp;</P>
<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; private void Form1_Paint(object sender, PaintEventArgs e)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Graphics g=e.Graphics;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Pen redpen = new Pen(Color.Red, 100f);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; g.DrawLine(redpen, new Point(120, 12), new Point(400, 12));<BR></P>
<P>&nbsp;</P>
<P>31using System.Drawing.Drawing2D;</P>
<P>&nbsp;</P>
<P><BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Graphics g = e.Graphics;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Pen bluePen = new Pen(Color.Blue, 10);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Rectangle rect = new Rectangle(100, 100, 100, 150);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; g.DrawRectangle(bluePen, rect);<BR></P>
<P>32using System.Drawing.Drawing2D;</P>
<P><BR>&nbsp; Graphics g = e.Graphics;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Pen greenPen = new Pen(Color.Green, 10);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; g.DrawEllipse(greenPen, 100, 100, 100, 200);</P>
<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</P>
<P>&nbsp;</P>
<P>&nbsp;</P>
<P>&nbsp;</P>
<P>&nbsp;</P>
<P>&nbsp;</P>
<P>&nbsp;</P>
<P>&nbsp;</P>
<P>&nbsp;</P>
<P>&nbsp;</P>
<P>&nbsp;</P>
<P>&nbsp;</P>
<P>&nbsp;</P>
<P>&nbsp;</P></div>]]></description>
	    <author><![CDATA[yunlebeijing2008]]></author>
	    <comments>http://yunlebeijing2008.blog.163.com/blog/static/61032481200851351043438</comments>
    <slash:comments>0</slash:comments>
    <guid isPermaLink="true">http://yunlebeijing2008.blog.163.com/blog/static/61032481200851351043438</guid>
    <pubDate>Fri, 13 Jun 2008 17:10:43 +0800</pubDate>
    <dcterms:modified>2008-06-13T17:10:43+08:00</dcterms:modified>
  </item>    
  <item>
  	<title><![CDATA[计算机等级考试四级经典论述题-计算机等级考试-考试大]]></title>	
    <link>http://yunlebeijing2008.blog.163.com/blog/static/6103248120085692941546</link>
    <description><![CDATA[<div><DIV>您现在的位置：&nbsp;考试大&nbsp;&gt;&gt;&nbsp;计算机等级&nbsp;&gt;&gt;&nbsp;四级&nbsp;&gt;&gt;&nbsp;笔试&nbsp;&gt;&gt;&nbsp;文章内容 </DIV>
<DIV align=center>
<DIV align=center>
<DIV>计算机等级考试四级经典论述题</DIV></DIV>
<DIV>
<DIV>Ads by Google</DIV><STRONG>第四部分 存储管理</STRONG> 
<P>问题一： <BR> 存储管理的实质是什么？(对内存的管理，主要对内存中用户区进行管理) <BR> 多道程序中，为方便用户和充分利用内存以提高内存利用率，内存管理的任务是什么？(内存空间的分配和回收内存空间的共享存储保护地址映射内存扩充) <BR> 如何实现存储保护？ <BR> 物理存储器分几类？(内存外存缓存) <BR> 虚存储器的含义是什么？(两层含义) <BR> 什么叫物理地址？什么叫逻辑地址？什么叫地址映射？地址映射分哪几类？(静态动态) <BR>问题二： <BR> 怎样对内存进行分区？(静态动态；等长不等长) <BR> 根据分区情况，从如何实现进程的内存分配？ <BR> 什么叫碎片？(零散的小空闲区) 怎样解决碎片问题？(紧凑技术) <BR>问题三： <BR> 存储管理方案有哪些？(分区管理页式管理段式管理段页式管理虚拟存储管理) <BR> 分区管理的基本 思想 是什么？主要缺点是什么？ <BR>基本思想：将内存划分成若干连续的区域，称为分区，每个分区装入一个运行作业 <BR>主要缺点：不能充分利用内存，也不能实现对内存的扩充 <BR> 什么是固定分区？什么是可变分区？各有什么优缺点？ <BR> 分区管理可以采用的内存分配策略是什么？ <BR>首先适应算法最佳适应算法最坏适应算法</P>
<P> 为实现地址映射和存储保护，系统为用户程序提供了哪些寄存器？ <BR>基址寄存器限长寄存器；上界寄存器下界寄存器 <BR>问题四： <BR> 试述页式存储 管理 的基本 原理 <BR> 内存划分 <BR> 逻辑地址空间划分 <BR> 页面大小 <BR> 内存分配 <BR> 试述页式存储管理的实现方法 <BR> 建立页表 建立空闲页面表 <BR> 硬件支持 地址映射过程 <BR> 为了提高存取速度，可以使用快表技术试述这一技术是如何实现的？ <BR>问题五： <BR>段式存储管理已考 <BR>问题六： <BR> 试述段页式存储管理的基本 思想 <BR> 如何实现段页式存储管理 <BR>问题七： <BR> 虚拟存储技术的基本思想 <BR> 虚拟存储技术的理论基础(局部性原理) <BR> 虚拟存储管理的基本原理 <BR> 虚拟存储管理的分类 <BR> 以虚拟页式存储管理为例介绍虚拟存储管理的实现过程 <BR> 在虚存中，页面在内存与外存中频繁地调试，系统效率急剧下降，称为颠簸试说明产生颠簸的原因通过什么方式可以防止颠簸的发生？</P>
<P><STRONG>第五部分文件 管理</STRONG> </P>
<P>问题一： <BR> 文件文件系统的概念？ <BR> 文件从不同角度（性质和用途信息的保存期限保护方式逻辑结构物理结构存取方式内容，特别是逻辑结构和物理结构），可以分哪几类？ <BR> 文件系统的功能和优点？ <BR>问题二： <BR> 文件的存取方式有哪两种？ <BR> 文件的存储设备有哪些？ <BR> 具体阐述常用的几种文件物理结构及其优缺点 <BR> 文件存储设备文件物理结构与存取方式的关系 <BR>问题三： <BR> 什么是文件目录目录文件与当前目录？ <BR> 文件目录结构有哪几种，各有什么优缺点？ <BR> 为了提高检索速度，对文件目录应做怎样的改进？ <BR>问题四： <BR> 用哪几种方法实现文件存储的管理？ <BR>位示图法空间块表空闲块链表 <BR> 通过哪几种方面实现文件的存取控制（共享保护和保密）？要求具体阐述 <BR>问题五： <BR> 如何使用文件（建立打开读写关闭撤消）？ <BR> 文件系统的 安全 (海量转储增量转储)？</P>
<P><STRONG>第六部分 设备 管理</STRONG> </P>
<P>问题一：答案在题典P144 <BR> 什么是操作系统管理的设备管理？ <BR> 设备管理可以按照何种方式分类，每种分类方式又包括哪些？ <BR> 设备管理的目标和功能是什么？ <BR> 外部设备的输入输出方式有哪些？ <BR>问题二： <BR> 简述通道及通道控制结构 <BR> 简述通道控制的设备采用何种连接方式？其优点是什么？ <BR> 通道按传送数据的工作方式可以分哪几类？ <BR> 简述通道的工作 原理 （分五个阶段）P516 <BR>问题三： <BR> 设备分配的任务是什么？ <BR> 设备分配应坚持的原则是什么？ <BR>设备的独立性：不能因物理设备的更换而影响用户程序的正常运行； <BR>系统的 安全 性：设备分配不能导致死锁现象发生 <BR> 什么是设备的独立性？根据设备的类型，设备的分配策略有哪些？(独占设备共享设备虚拟设备与SPOOLing系统)以磁盘为例，有哪些优化调度算法？应考虑哪些因素？ <BR> 为实现设备的有效管理，应采用怎样的数据结构？</P></DIV></DIV><A href="http://www.examda.com/ncre/four/bishi/20080509/095649320-2.html" target=_blank></A><p>----------------------------<br/>一键转贴，快速捕捉生活精彩，赢每周好礼！<a href="http://blog.163.com/activities/hunter/hunter.do?080526jclr46" target="_blank">查看活动首页&gt;&gt;</a></p></div>]]></description>
	    <author><![CDATA[yunlebeijing2008]]></author>
	    <comments>http://yunlebeijing2008.blog.163.com/blog/static/6103248120085692941546</comments>
    <slash:comments>0</slash:comments>
    <guid isPermaLink="true">http://yunlebeijing2008.blog.163.com/blog/static/6103248120085692941546</guid>
    <pubDate>Fri, 6 Jun 2008 09:29:41 +0800</pubDate>
    <dcterms:modified>2008-06-06T09:29:41+08:00</dcterms:modified>
  </item>    
  <item>
  	<title><![CDATA[计算机等级考试四级经典论述题-计算机等级考试-考试大]]></title>	
    <link>http://yunlebeijing2008.blog.163.com/blog/static/6103248120085692915305</link>
    <description><![CDATA[<div><DIV>您现在的位置：&nbsp;考试大&nbsp;&gt;&gt;&nbsp;计算机等级&nbsp;&gt;&gt;&nbsp;四级&nbsp;&gt;&gt;&nbsp;笔试&nbsp;&gt;&gt;&nbsp;文章内容 </DIV>
<DIV align=center>
<DIV align=center>
<DIV>计算机等级考试四级经典论述题</DIV></DIV>
<DIV>
<DIV>Ads by Google</DIV>
<DIV>计算机科学课程<BR>研究生和本科生&nbsp;课程在英国高校<BR>study.cs.ncl.ac.uk/</DIV>
<P>问题一： <BR> 试述操作系统的概念，作用，特征 <BR> 基本的操作系统类型有哪些？操作系统的目标是什么？有哪些主要特点？ <BR>问题二： <BR> 什么是中断？中断有哪些类型？ <BR> 什么是中断响应？什么是中断优先级？什么是中断屏敝？ <BR> 中断处理分哪几个阶段？ </P>
<P><STRONG>第二部分 进程 管理</STRONG> </P>
<P>问题一： <BR> 什么是程序的顺序执行？程序的顺序执行有什么特点？ <BR> 什么是多道程序设计技术？多道程序设计应考注意些什么问题？多道程序环境程序执行有哪些特点？ <BR> 什么是程序的并发执行？程序的迸发执行有什么特点？ <BR>问题二：答案在题典P404 <BR> 进程调度的功能 <BR> 何时可进行进程调度 <BR> 时间片轮转算法的基本 思想 是什么？ <BR> 时间片的大小对系统有什么影响？在选取时间片是应考虑哪些因素？ <BR>问题三： <BR> 进程的概念 <BR> 进程与程序有哪些区别和联系？ <BR> 进程有哪些特性？ <BR> 试述进程的三种状态及其相互转化 <BR>问题四： <BR> 什么是死锁？用什么来描述？(资源分配图) <BR> 产生死锁的原因及必要条件是什么？ <BR> 如何预防死锁？ <BR> 如何避免死锁？ <BR> 如何检测死锁？ <BR> 如何解除死锁？</P>
<P><STRONG>第三部分 作业 管理</STRONG> </P>
<P>问题一：(答案在题典P355) <BR> 请说明操作系统作业管理的功能 <BR> 作业调度算法是按照什么样的原则来选取作业并投入运行，调试算法的合理性直接影响系统的效率，作业调度算法有哪些？对算法的选择要考虑哪些问题？ <BR>问题二： <BR> 作业的构成怎样? <BR> 作业控制块与作业的关系 <BR> 试说明作业的几种状态及其转换 <BR> 以批处理方式下作业的管理为例，说明作业调度的主要任务目标计价作业调度算法优劣的性能指标主要作业调度算法及作业调度的时机是什么？ </P></DIV></DIV><A href="http://www.examda.com/ncre/four/bishi/20080509/095649320.html" target=_blank></A><p>----------------------------<br/>一键转贴，快速捕捉生活精彩，赢每周好礼！<a href="http://blog.163.com/activities/hunter/hunter.do?080526jclr46" target="_blank">查看活动首页&gt;&gt;</a></p></div>]]></description>
	    <author><![CDATA[yunlebeijing2008]]></author>
	    <comments>http://yunlebeijing2008.blog.163.com/blog/static/6103248120085692915305</comments>
    <slash:comments>0</slash:comments>
    <guid isPermaLink="true">http://yunlebeijing2008.blog.163.com/blog/static/6103248120085692915305</guid>
    <pubDate>Fri, 6 Jun 2008 09:29:15 +0800</pubDate>
    <dcterms:modified>2008-06-06T09:29:15+08:00</dcterms:modified>
  </item>    
  <item>
  	<title><![CDATA[10人共绘油画&quot;废墟下看书女孩&quot;拟义卖6000万(图)_网易新闻中心]]></title>	
    <link>http://yunlebeijing2008.blog.163.com/blog/static/6103248120085551051129</link>
    <description><![CDATA[<div><DIV>
<DIV>
<DIV>
<DIV>核心提示：5月12日下午，什邡蓥华镇中学教学楼垮塌以后，一百多名学生被埋13日凌晨，当官兵救援时，发现一个女孩在废墟里打着手电筒看书中央美术学院的10位艺术家通过集体创作的方式，将该故事创作成了一幅油画这幅画将义卖，直到筹款6000万为灾区建震不垮的学校 </DIV>
<DIV>
<CENTER><IMG height=240 src="http://cimg2.163.com/catchpic/2/26/26DC84FD6BE13C2641A3B938617AFBE4.gif" width=300 border=0></CENTER>
<P style="TEXT-INDENT: 2em" align=center>油画生命的礼赞局部</P>
<CENTER><IMG height=400 src="http://cimg2.163.com/catchpic/8/86/86FE6A718510E198F9796A09F8913902.gif" width=266 border=0></CENTER>
<P style="TEXT-INDENT: 2em" align=center>在医院的邓清清秦文清供图</P>
<CENTER><IMG height=240 src="http://cimg2.163.com/catchpic/D/DF/DFB28CEE812698802A95BB28D9664443.gif" width=300 border=0></CENTER>
<P style="TEXT-INDENT: 2em" align=center>油画生命的礼赞</P>
<P style="TEXT-INDENT: 2em">&nbsp;5月12日下午，什邡蓥华镇中学教学楼垮塌以后，一百多名学生被埋在废墟中5月13日凌晨，当成都军区特种大队官兵救援时，发现一个女孩在废墟里打着手电筒看书这个女孩儿叫邓清清，她的故事感动了中国，但遗憾的是这个故事并没有留下任何影像资料</P>
<P style="TEXT-INDENT: 2em">日前，中央美术学院毕业的马冰绍亚川秦文清忻东旺朱春林雷波马琳刘建平林森王克举10位艺术家，通过集体创作的方式，花了3天时间将该故事创作成了一幅撼动人心的布面油画，名为生命的礼赞，被企业家史玉柱以1000万元认购收藏，并放在今日美术馆进行展览</P>
<P style="TEXT-INDENT: 2em">昨日，参与创作的艺术家给记者讲述了这幅画背后的故事原来，史玉柱只是接过了爱心传递的第一棒，这幅画将继续义卖，直到筹款6000万为灾区建震不垮的学校而记者还了解到，在这幅画作的创作过程中，重庆人海军创作室的专职画家秦文清成为关键人物，他在灾区花了48小时寻找到了这幅画的主人公邓清清</P>
<P style="TEXT-INDENT: 2em"><STRONG>艰难创作：</STRONG></P>
<P style="TEXT-INDENT: 2em"><STRONG>在地下室搭了一个废墟</STRONG></P>
<P style="TEXT-INDENT: 2em"><STRONG>没有图片</STRONG></P>
<P style="TEXT-INDENT: 2em"><STRONG>简短口述成全部资料</STRONG></P>
<P style="TEXT-INDENT: 2em">旅美专职画家马冰是生命的礼赞的主创者之一，央视我们栏目的主持人王立芬在听到邓清清的故事后，最早就是和他联系，希望能通过绘画的形式，为这个感动中国的故事留下一份珍贵的影像资料，并把该画赈灾义卖</P>
<P style="TEXT-INDENT: 2em">马冰告诉记者，听到王立芬的转述，他首先是震惊，然后几乎是没有经过思考就答应创作，他认为这是艺术家的责任随后，他立刻联系了当年和他一起就读于中央美术学院高研班的同学，全班14个同学，生活在北京的有10个，这10个同学都是一口答应了下来记者了解到，除了正在赶往成都参加救灾的秦文清，9位艺术家迅速聚集到今日美术馆，在没有任何图片影像的情况下，开始空想创作，而提供给他们的只有一个非常简单的故事范本</P>
<P style="TEXT-INDENT: 2em"><STRONG>10人共绘</STRONG></P>
<P style="TEXT-INDENT: 2em"><STRONG>各施所长分工协作</STRONG></P>
<P style="TEXT-INDENT: 2em">一幅2米×6米的油画，让10个艺术家来画，且要看上去天衣无缝，就像出自一人之手，这样的要求，对于任何创作者来说，都是一个极大挑战，难怪今日美术馆馆长张子康在接受记者采访时会说：要将10个性格各异，且都非常具有个性的艺术家聚集到一起创作一幅作品，本身就不可思议</P>
<P style="TEXT-INDENT: 2em">清华大学教授忻东旺向记者揭秘了他们的创作过程：绍亚川马冰负责整体框架和主题，我比较擅长画细节和静物，就被安排刻画人物表情，每个人都各司其职，谁画钢筋，谁画桌椅，我们都有明确的分工</P>
<P style="TEXT-INDENT: 2em"><STRONG>寻找感觉</STRONG></P>
<P style="TEXT-INDENT: 2em"><STRONG>复原现场真人当模特</STRONG></P>
<P style="TEXT-INDENT: 2em">创作中，艺术家们不断地重读简短的故事，但能得到的创作灵感太少了，几位艺术家最终商议，要复原一个地震废墟现场为此，他们找来了一个中学女孩充当模特，在今日美术馆的地下室，让女孩躺下，把门板等物品覆盖在她身上，虚拟出了一个废墟现场艺术家们就以这个现场拍摄的照片为参照，完成了生命的礼赞的初稿在这初稿中，看书的女孩还是请来的小模特马冰回忆，从开始创作到彻底完稿，花费了整整3天3夜</P>
<P style="TEXT-INDENT: 2em"><STRONG>紧急寻找：</STRONG></P>
<P style="TEXT-INDENT: 2em"><STRONG>邓清清被找到时仍在看书</STRONG></P>
<P style="TEXT-INDENT: 2em"><STRONG>去废墟寻找邓清清</STRONG></P>
<P style="TEXT-INDENT: 2em">就在9位艺术家们在北京绞尽脑汁创作的同时，正从老家涪陵赶往成都参加救灾工作的海军创作室的专职画家秦文清，也承担起了在灾区寻找邓清清的任务秦文清赶赴灾区的时间是5月23日，那时正值灾区救援的关键时期，要在灾区寻找一个普通小女孩，秦文清也没有底在面向民兵杂志社主编的帮助下，凭着军人身份，秦文清终于到达了故事发生地什邡蓥华镇中学，不过让他失望的是，邓清清并不在此地，她的班主任透露了一个不确切消息：她可能还在双流第一人民医院</P>
<P style="TEXT-INDENT: 2em"><STRONG>找到她时</STRONG></P>
<P style="TEXT-INDENT: 2em">赶到双流第一人民医院，当医生告诉秦文清面前的女孩儿就是邓清清时，秦文清有些不敢相信，因为他从这个女孩儿的眼中看到了与她年龄不相符的坚毅而更让秦文清诧异的是，在医院过道的临时铺位上，面对周围嘈杂的环境，这个小女孩儿依然在认真地看着书，她的手上捧着感受母爱，旁边还放着一本观后感读后感秦文清称，邓清清显得非常大方，热情地称呼他解放军叔叔，面对秦文清拍照的请求，邓清清欣然应允至此，该故事中的主人公，终于被相机定格，不再抽象为了找到邓清清，秦文清花费了整整48小时</P>
<P style="TEXT-INDENT: 2em"><STRONG>迅速换脸</STRONG></P>
<P style="TEXT-INDENT: 2em"><STRONG>邓清清成了主人公</STRONG></P>
<P style="TEXT-INDENT: 2em">秦文清迅速将照片传回了北京，艺术家们随即在初稿上换脸马冰介绍，他们对邓清清在画作上呈现的表情思考了很久，首先我们觉得她应该是一个励志的形象，所以眼神中必须要有坚毅的感觉，但我们同样要突出她在废墟下的恐慌痛苦期盼在画完之后，从四川赶回的秦文清还对这张脸作了最后的修饰，最后呈现出的邓清清，脸上脏脏的，而且还有伤痕</P></DIV></DIV></DIV></DIV><p>----------------------------<br/>一键转贴，快速捕捉生活精彩，赢每周好礼！<a href="http://blog.163.com/activities/hunter/hunter.do?080526jclr46" target="_blank">查看活动首页&gt;&gt;</a></p></div>]]></description>
	    <author><![CDATA[yunlebeijing2008]]></author>
	    <comments>http://yunlebeijing2008.blog.163.com/blog/static/6103248120085551051129</comments>
    <slash:comments>0</slash:comments>
    <guid isPermaLink="true">http://yunlebeijing2008.blog.163.com/blog/static/6103248120085551051129</guid>
    <pubDate>Thu, 5 Jun 2008 17:10:51 +0800</pubDate>
    <dcterms:modified>2008-06-05T17:10:51+08:00</dcterms:modified>
  </item>    
  <item>
  	<title><![CDATA[女子被埋哭求先救未婚夫：我没事，救老公啊]]></title>	
    <link>http://yunlebeijing2008.blog.163.com/blog/static/6103248120084211354526</link>
    <description><![CDATA[<div><DIV>
<DIV>
<DIV>
<DIV>&nbsp;“老公，你脚被压住了吗？坚持下去，只要能活着出去，哪怕你手脚都残了，我也要照顾你一辈子。”“老公，坚持！以后我要做你的老婆，我就是你的手和脚。”——20岁女孩殷妞妞</DIV>
<DIV>
<P style="TEXT-INDENT: 2em">“来人啊，快救救我老公！”同样被埋在废墟下的20岁女孩殷妞妞向救援人员发出求揪。从被救出那一刻起，她就一直跪在未婚夫谭显松被埋的地方，跟他说话、鼓励他，直到29小时后他被成功救出。“这一生，我来照顾他，我要做他那只被截去的左手。”殷妞妞说。</P>
<P style="TEXT-INDENT: 2em"><STRONG>同时被埋哭求先“救老公”</STRONG></P>
<P style="TEXT-INDENT: 2em">地震发生时，21岁的谭显松正在洗澡，天旋地转、猛烈摇晃让他意识到地震发生了。他赶紧叫未婚妻殷妞妞拿来衣服，准备穿上就带着妞妞往外逃。浴室门打开了，妞妞拿衣服的手已经伸进了浴室，可就在这时，房子垮了，两人被埋地下。</P>
<P style="TEXT-INDENT: 2em">片刻的惊慌后，两人互相呼喊着对方的名字。那时，没有哭泣、没有绝望，只有一句又一句互相鼓励的话。“老公，你要紧吗？一定要活着出去哦。”“妞妞，我们一定能活着走出去，你不能放弃哦。”过了约20分钟，妞妞听到外面有脚步声，于是大喊救命——“来人啊，快救救我老公！”</P>
<P style="TEXT-INDENT: 2em">妞妞的喊声吸引了救援人员的注意，但他们发现，妞妞埋得浅一些，显松却埋得较深而且左手被石梁压得死死的。救援人员选择先救妞妞，但妞妞不同意，“我没事，救老公啊！”她哭了，声音撕心裂肺，却没能“打动”救援人员。</P>
<P style="TEXT-INDENT: 2em"><STRONG>跪地鼓励“老公”一定活着</STRONG></P>
<P style="TEXT-INDENT: 2em">两小时后，妞妞被成功救出，但显松一直被石梁压住不能动弹。妞妞拒绝到安全的地方，而是跪在显松被埋的地方，不停地跟显松说一定要坚强，一定要等着救援人员来救。</P>
<P style="TEXT-INDENT: 2em">时间一分一秒过去，妞妞一遍遍地求着武警官兵，快些救她的老公，但当时只有4名武警，根本没办法迅速救出显松。</P>
<P style="TEXT-INDENT: 2em">“老公，你饿了吗？我给你找吃的。”话说出口，妞妞才发现身边根本没有吃的，身上根本没有钱买吃的。武警官兵赶紧把身上的钱都凑了一下。</P>
<P style="TEXT-INDENT: 2em">“有50多元，官兵们替我们买来方便面，可他们硬是一口都没吃，全给我们吃了。”妞妞说，明明已经饿了很久的武警官兵，却强硬地把所有方便面留给了他们，“没有水，我们就干吞。”</P>
<P style="TEXT-INDENT: 2em">13日凌晨3时多，天下起了雨，显松说他快要窒息了。原来，显松一直都闻到相当浓的煤气味，妞妞赶紧跟旁边的人努力为显松“现造”了一条生命通道——一条通向地面的缝隙。也就是这条爱的缝隙，让显松有了足够的氧气。</P>
<P style="TEXT-INDENT: 2em">有了足够的氧气，显松清醒些了，但他也更加清醒地意识到自己的手被死死地压住，即使活着出来也很可能残疾，显松把自己的担心小声地说了出来，妞妞立即回答他：“只要人活着出来，手脚残了都会照顾你一辈子！”</P>
<P style="TEXT-INDENT: 2em">显松眼里泛着泪光，流利地背出妞妞曾跟他说过的话：“老公，你脚被压住了吗？坚持下去，只要能活着出去，哪怕你手脚都残了，我也要照顾你一辈子。”“老公，坚持！以后我要做你的老婆，我就是你的手和脚。”</P>
<P style="TEXT-INDENT: 2em"><STRONG>“老公”被救出两人又失散</STRONG></P>
<P style="TEXT-INDENT: 2em">13日晚7时多，显松被成功救出！妞妞高兴得又哭又笑，旁边的人也鼓起了掌。显松被抬出了废墟，并迅速送到救护车赶往省医院。</P>
<P style="TEXT-INDENT: 2em">妞妞不知道显松被送到了哪里，连夜在都江堰的每个医疗点寻找。那个夜晚，天好黑，路好烂，妞妞走在路上好孤独，好担心她心爱的人。妞妞没有停下脚步，直到把都江堰该找的地方都找完了。最后，有个好心人跟她说，可能去了青白江，她立即步行到车站。</P>
<P style="TEXT-INDENT: 2em">此时的妞妞右脚大拇指骨折处已经开始溃烂、肿大，鞋子完全穿不进去了，她脱掉了鞋子。好心的司机知道她是为了找人，连车费也没有收，一位同车的大姐递给她一百元。</P>
<P style="TEXT-INDENT: 2em">“一路上，我连水都没有喝一口。”妞妞说，一是因为没钱，二是太着急找到心爱的人，“后来我意识到，如果我垮了，老公就没有人照顾了，于是我买了东西强行咽下。”</P>
<P style="TEXT-INDENT: 2em">她到了青白江，到每一个接收地震伤病人的医院，从急诊科找到住院处，全靠着一双伤痛的脚，留下一路伤口流出的脓水！可青白江的医院还是没有。这一次，她再次遇到了好心人，他们给了她一个号码，刚好是省医院入院处的电话。</P>
<P style="TEXT-INDENT: 2em">坐车来到成都，坐在省医院第一住院大楼门口的台阶上，她流下了伤心的泪水，心里一遍遍地喊着：“老公，你在哪里？你现在好不好？老天爷，求你让我快些找到他吧！”想到口袋里还揣着一个电话号码，她怀着最后的一线希望拨了过去，工作人员告诉她有这个人，还告诉了她床位号。此时，已经是16日下午4时！与心爱的人失散已经整整69个小时！</P>
<P style="TEXT-INDENT: 2em"><STRONG>“我要做他被截去的左手”</STRONG></P>
<P style="TEXT-INDENT: 2em">妞妞飞奔到第一住院大楼9楼普外科，小心翼翼地走进一个病房，她看到心爱的人正躺在病床上，肿胀得发白的双脚那样地令人心痛，空空的左手袖笼让她猛地意识到爱人的左手已经没有了。她跑过去，上下看着，显松也不敢相信眼前正是救下自己一命的未婚妻，他更不知道未婚妻为了找他吃了多少苦，只是用正在输液的右手轻轻地擦去妞妞脸上淌过的泪水。</P>
<P style="TEXT-INDENT: 2em">两人忙着问对方情况，任凭眼泪四溅。直到采访快结束时，妞妞才告诉记者，她跟显松从认识到现在只有半年时间，因为感情很好，已经订了婚。</P>
<P style="TEXT-INDENT: 2em">“是这场灾难见证了我们的爱情，我想在病好后就娶她。”显松含着眼泪说着，而正在隔壁输液的妞妞则一遍遍地看着液体，巴望着液体快点输完后好过去照顾爱人，“这一生，我来照顾他，我要做他那只被截去的左手。” (本文来源：四川在线-天府早报 ) </P></DIV>
<DIV>
<DIV>
<DIV>截至5月20日18时，四川汶川8级地震已造成40075人遇难，247645人受伤；至20日12时，累计失踪32361人。截至19日24时，抢险救灾人员累计解救、转移被困人员360159人，其中从废墟中挖掘出来的生还者共计6375人。 </DIV></DIV></DIV></DIV></DIV></DIV></div>]]></description>
	    <author><![CDATA[yunlebeijing2008]]></author>
	    <comments>http://yunlebeijing2008.blog.163.com/blog/static/6103248120084211354526</comments>
    <slash:comments>0</slash:comments>
    <guid isPermaLink="true">http://yunlebeijing2008.blog.163.com/blog/static/6103248120084211354526</guid>
    <pubDate>Wed, 21 May 2008 13:35:45 +0800</pubDate>
    <dcterms:modified>2008-05-21T13:37:22+08:00</dcterms:modified>
  </item>    
  <item>
  	<title><![CDATA[手]]></title>	
    <link>http://yunlebeijing2008.blog.163.com/blog/static/6103248120084189574044</link>
    <description><![CDATA[<div><DIV>
<TABLE>
<DIV>
<DIV>
<P><STRONG>　　</STRONG>一双双握枪的手，</P>
<P>　　在片片瓦砾中摸索，</P>
<P>　　让一个个鲜活的生命重新振作。</P>
<P>　　一双双不相识的手，</P>
<P>　　在漫天灰尘中紧握，</P>
<P>　　闪亮着黑暗中不熄的双眸。</P>
<P>　　一双双不知疲倦的手，</P>
<P>　　打通着生命的通道，</P>
<P>　　让生命如此美好宛如花朵。</P>
<P>　　一双双人民信赖的手，</P>
<P>　　在苍穹下有力的挥舞，</P>
<P>　　这是我们心中的那盏灯啊，</P>
<P>　　是他让希望的曙光在心头闪烁。</P>
<P>　　一双双抢通的手，</P>
<P>　　一双双志愿者的手，</P>
<P>　　一双双舍己救人的手，</P>
<P>　　汶川，让我们感动的太多太多。。。</P>
<P>　　来，</P>
<P>　　擦干吧，身上残存的血迹，</P>
<P>　　擦干吧，眼角还有的泪水，</P>
<P>　　紧握的双手，</P>
<P>　　让我们成为强者。</P>
<P>　　天灾，算什么？！</P>
<P>　　伤痛，算什么？！</P>
<P>　　13亿双拳头抱团就能改造山河。</P>
<P>　　13亿双大手握在一起就是长城啊，</P>
<P>　　明天的川蜀大地，</P>
<P>　　依然是我们心目中的天府之国！ </P></DIV></DIV>
<TBODY></TBODY></TABLE></DIV></div>]]></description>
	    <author><![CDATA[yunlebeijing2008]]></author>
	    <comments>http://yunlebeijing2008.blog.163.com/blog/static/6103248120084189574044</comments>
    <slash:comments>0</slash:comments>
    <guid isPermaLink="true">http://yunlebeijing2008.blog.163.com/blog/static/6103248120084189574044</guid>
    <pubDate>Sun, 18 May 2008 09:57:40 +0800</pubDate>
    <dcterms:modified>2008-05-18T10:01:15+08:00</dcterms:modified>
  </item>    
  <item>
  	<title><![CDATA[生死不离]]></title>	
    <link>http://yunlebeijing2008.blog.163.com/blog/static/61032481200841895637209</link>
    <description><![CDATA[<div><DIV>
<TABLE>
<DIV>
<DIV>
<P><STRONG>　&nbsp;&nbsp; </STRONG>生死不离，</P>
<P>　　你的梦落在哪里。</P>
<P>　　想着生活继续，</P>
<P>　　天空失去美丽，</P>
<P>　　你却等待明天站起。</P>
<P>　　无论你在哪里，</P>
<P>　　我都要找到你。</P>
<P>　　血脉能创造奇迹，</P>
<P>　　你的呼喊就刻在我的血液里。</P>
<P>　　生死不离，</P>
<P>　　我数秒等你消息。</P>
<P>　　相信生命不息，</P>
<P>　　我看不到你，</P>
<P>　　你却牵挂在我心里。</P>
<P>　　无论你在哪里，</P>
<P>　　我都要找到你。</P>
<P>　　血脉能创造奇迹，</P>
<P>　　搭起双手筑成你回家的路基。</P>
<P>　　生死不离，</P>
<P>　　痛苦也不哭泣，</P>
<P>　　爱是你的传奇，</P>
<P>　　彩虹在风雨后升起。</P>
<P>　　无论你在哪里，</P>
<P>　　我都要找到你。</P>
<P>　　血脉能创造奇迹，</P>
<P>　　你一丝希望是我全部的动力。 </P></DIV><BR></DIV>
<TBODY></TBODY></TABLE></DIV></div>]]></description>
	    <author><![CDATA[yunlebeijing2008]]></author>
	    <comments>http://yunlebeijing2008.blog.163.com/blog/static/61032481200841895637209</comments>
    <slash:comments>0</slash:comments>
    <guid isPermaLink="true">http://yunlebeijing2008.blog.163.com/blog/static/61032481200841895637209</guid>
    <pubDate>Sun, 18 May 2008 09:56:37 +0800</pubDate>
    <dcterms:modified>2008-05-18T10:02:13+08:00</dcterms:modified>
  </item>    
  <item>
  	<title><![CDATA[把爱放大，我们不怕]]></title>	
    <link>http://yunlebeijing2008.blog.163.com/blog/static/61032481200841895334167</link>
    <description><![CDATA[<div><DIV>
<TABLE>
<DIV>
<DIV>
<P><STRONG>　　</STRONG>我把我的爱放大，</P>
<P>　　你把你的爱放大</P>
<P>　　我们共同建构一个温暖的家</P>
<P>　　有你，有我，偎依着时刻牵挂的他</P>
<P>　　黑夜，余震</P>
<P>　　风雨依然交加</P>
<P>　　听，美丽的西川在呻吟</P>
<P>　　别怕，别怕，我们已经来啦！</P>
<P>　　伤病 死亡</P>
<P>　　痛苦还在加大</P>
<P>　　看，我们的同胞在倒下</P>
<P>　　别怕 别怕 我们绝对不会把你丢下！</P>
<P>　　把爱放大，我们不怕</P>
<P>　　黑夜里他是一座照明塔</P>
<P>　　风雨天他是一副擎天架</P>
<P>　　照亮你，照亮我</P>
<P>　　把我们一家统统盛下！</P>
<P>　　把爱放大，我们不怕</P>
<P>　　痛苦时请看看天上的星</P>
<P>　　孤独了就和月亮说会话</P>
<P>　　这金闪闪的星 ，亮堂堂的月</P>
<P>　　装满了全球华人由衷的祝福呀！</P>
<P>　　把爱放大，我们不怕</P>
<P>　　你看，我们的家多大</P>
<P>　　兄弟姐妹都说中国话</P>
<P>　　妈妈就是大中华</P>
<P>　　把爱放大，请哥哥姐姐笑纳</P>
<P>　　把爱放大，请弟弟妹妹收下</P>
<P>　　把这爱存下，我们不会害怕！</P>
<P>　　我们不怕！不怕！ </P></DIV><BR></DIV>
<TBODY></TBODY></TABLE></DIV></div>]]></description>
	    <author><![CDATA[yunlebeijing2008]]></author>
	    <comments>http://yunlebeijing2008.blog.163.com/blog/static/61032481200841895334167</comments>
    <slash:comments>0</slash:comments>
    <guid isPermaLink="true">http://yunlebeijing2008.blog.163.com/blog/static/61032481200841895334167</guid>
    <pubDate>Sun, 18 May 2008 09:53:34 +0800</pubDate>
    <dcterms:modified>2008-05-18T10:03:57+08:00</dcterms:modified>
  </item>    
  <item>
  	<title><![CDATA[成城众志抗地震,万众一心战灾难]]></title>	
    <link>http://yunlebeijing2008.blog.163.com/blog/static/6103248120084189522480</link>
    <description><![CDATA[<div><DIV>
<TABLE>
<DIV>
<DIV>
<H1>成城众志抗地震,一心万众战灾</H1></DIV>
<DIV>
<P>　　泪眼模糊了视线,</P>
<P>　　为了天府之国的那一天,</P>
<P>　　五月十二日的下午,</P>
<P>　　一场突来的灾难降临了人间。</P>
<P>　　七点八级的地震恶魔，</P>
<P>　　把它巨兽般的鬼爪，</P>
<P>　　无情地伸向了四川盆地的西北面，</P>
<P>　　夺走了许多生命，</P>
<P>　　使多少人失去了美丽的家园，</P>
<P>　　还有那些如花般的孩子，</P>
<P>　　再也看不到他们读书时可爱的笑脸。</P>
<P>　　共和国又一次面临严峻的考验，</P>
<P>　　总理来到前线，</P>
<P>　　为了领导人民战胜灾害，</P>
<P>　　亲自置身于灾难的边缘，</P>
<P>　　以巨人的神力，</P>
<P>　　号召着军民奋勇向前。</P>
<P>　　解放军指战员，</P>
<P>　　克服暴雨泥石流的危险，</P>
<P>　　冲锋陷阵一马当先，</P>
<P>　　又一次抒写了最可爱的人</P>
<P>　　这一不朽的诗篇！</P>
<P>　　亿万人的目光凝聚到四川，</P>
<P>　　担心着战争的前沿，</P>
<P>　　祝福着灾难中的人们，</P>
<P>　　渴望战胜灾难的愿望早日实现。</P>
<P>　　大家手拉手心相连，</P>
<P>　　成城众志做后援，</P>
<P>　　争献血忙捐钱，</P>
<P>　　一心万众救灾难。</P>
<P>　　同胞们别旁观，</P>
<P>　　擦干眼泪快向前，</P>
<P>　　人人献出一份爱，</P>
<P>　　为了中华民族更美好的明天！ </P></DIV><BR></DIV>
<TBODY></TBODY></TABLE></DIV></div>]]></description>
	    <author><![CDATA[yunlebeijing2008]]></author>
	    <comments>http://yunlebeijing2008.blog.163.com/blog/static/6103248120084189522480</comments>
    <slash:comments>0</slash:comments>
    <guid isPermaLink="true">http://yunlebeijing2008.blog.163.com/blog/static/6103248120084189522480</guid>
    <pubDate>Sun, 18 May 2008 09:52:24 +0800</pubDate>
    <dcterms:modified>2008-05-18T10:04:56+08:00</dcterms:modified>
  </item>    
  <item>
  	<title><![CDATA[地震中的恋人共赴生死之约]]></title>	
    <link>http://yunlebeijing2008.blog.163.com/blog/static/6103248120084189481958</link>
    <description><![CDATA[<div><DIV>
<DIV>
<DIV>
<DIV>
<DIV>
<DIV><B>地震中的恋人共赴生死之约</B> (2008-05-16 03:45:21) </DIV></DIV></DIV></DIV>
<DIV>
<DIV>
<DIV>
<DIV>
<DIV>
<P><STRONG>一、如果有下辈子，我还是你的女人</STRONG><BR>“宝贝，我很想你，我们结婚吧。”<BR>　　在北京的女网友“细猴”5月12日收到了男友的最后一条短信，发送时间是15:07。是时，四川汶川大地震刚刚发生39分钟，男友就在汶川。<BR>　　此后，男友音信杳无。<BR>　　2008年5月12日14:29，大地震发生的第二分钟，“细猴”收到了男友的电话：“宝贝，这边……边……震了……”她一时没反应过来，大叫他的名字，虽然手机里震耳欲聋的响声让她听不见他的答话,但她不敢挂断。她当时有一种预感，怕挂掉了就再也听不到他的声音了。<BR>　　终于，男友的声音又传了过来，他也没有挂电话：“有人受伤了，你照顾好自己！”“细猴”鼻子一酸喊道：“出什么事了呀？喂……你别吓我呀。”<BR>　　然后就是忙音。她发了疯一样打过去，忙音，无人接听，对方不在服务区内。<BR>　　她浑身发抖，打电话给他当地的朋友，还是无人接听。<BR>　　很快，她知道了，那里地震了，是大震。<BR>　　接下来的几天里，她一步不离地在屏幕前关注着四川传来的每个信息。1.2万，1.9万，5万……这些恐怖的黑色数字里面有他的影子吗？<BR>　　她坚信他一定是最勇敢的那一个，“在最后的一刻一直在想着我，向我求婚……”<BR>　　“亲爱的，如果还有下辈子……我一定还是你的女人。”</P>
<P>　　<STRONG>二、请你坚持下去，做我美丽的新娘<BR></STRONG>　　“亲爱的，没有我在身边，你一定很害怕吧。别担心，我会找到你的！请你一定一定要坚持下去，做我最美丽的新娘……”<BR>　　5月14日，在腾讯大渝网“许愿墙”上，一位男网友留下这样的话。<BR>　　他说，女友是四川汶川人，二人一起在重庆一家餐馆工作。4年前，他们成为恋人，准备在今年6月牵手走上红地毯。<BR>　　“地震发生前，我女友正在汶川老家筹备我们的婚礼。我因为工作忙提前一天回了重庆，没想到刚离家就地震了……什么方法都用过了，还是联系不上女友。我该怎么办……”<BR>　　他已经请假，准备回汶川去，走前在“许愿墙”上表明心迹。</P>
<P>　　<STRONG>三、归途还无期，我们还要继续前行<BR></STRONG>　　来自上海的一对记者恋人，因为共同来到地震灾区采访，而有了以下的记述。<BR>　　“5月13日，作为上海《新闻晚报》记者，我被派往四川灾区采访。<BR>　　“14日，男友作为上海晨报记者，也被派往四川灾区采访。<BR>　　“两个相爱一年的恋人，短暂的分别后，在这个特殊时期，来到了同一个地方。<BR>　　“说是同一个地方，其实还相差近100公里路程。原本是我每天发短信给他报平安，现在变成了互报平安。‘我们这里终于通水了’，‘中午吃的饼干’，‘一个当地居民冒险回家烧了饭，今天还吃到米饭啦’，‘刚听说又发生了较强余震，一定要当心啊”……<BR>　　“我所跟部队的医疗救援队，食宿可保证。他跟的是地震救援队，信息多较为安全。我最关心的是他的食宿，他最关心我的安全。<BR>　　“每天他都会将我们的情况告知他的父母，而我至今还告诉父亲：‘我们在上海很安全，请放心’。<BR>　　“归途还无期，我们还要继续前行。虽然我们的介入暂时不能给灾区人民带来直接帮助，但我们仍然相信：当我们打下这行字时，这个世界就在改变。”</P>
<P>　　<STRONG>四、地震后，觉得彼此很重要</STRONG><BR>　　“劫后余生，我们决定结婚，珍惜彼此。”<BR>　　5月13日上午，一对情侣手拉手走进沙坪坝区婚姻登记处。<BR>　　来自城区5个婚姻登记处的数据显示，地震不仅没有影响婚姻登记，前来登记结婚的人反而增多了。仅沙坪坝区就达到了120对，较平时增加30对。<BR>　　在沙坪坝区工作的吴钦拉着男友的手走进婚姻登记处。日前，地震发生时从高楼逃生后，吴钦首先想起的就是给男友打电话。几小时后，两人终于见面。<BR>　　吴钦抱着自己心爱的人流下了眼泪。当晚，两人约定结婚：“什么都不重要了，珍惜彼此最重要。”<BR>有个统计，5月13日渝中区、南岸区、沙坪坝区、江北区、九龙坡区等城五区有51对夫妇离婚，但有190对情侣喜结连理。<BR>　　新人表示：“地震后，觉得彼此很重要……”</P>
<P>　　<STRONG>四个故事，四个爱情故事，四个凄美动人的爱情故事。<BR>　　快餐文化时代，“爱得死去活来”已经成为矫情的代名词，成为经典的奢侈品。<BR>　　但今天我们发现，当真正的生死关头到来，曾经柔软的情感瞬间坚强，曾经多变的情绪瞬间执着，曾经迷惘的未来瞬间清晰。<BR>　　还有什么，能比生死之约更令人神往。有多少机会，能够体会海誓山盟的力量。这惟一一次决心，请让我在这个时刻擦亮：<BR>　　对面，就是我的梦想。身旁，就是我的归宿。她（他），就是我的新娘（郎）！</STRONG></P></DIV></DIV></DIV></DIV></DIV></DIV></DIV></div>]]></description>
	    <author><![CDATA[yunlebeijing2008]]></author>
	    <comments>http://yunlebeijing2008.blog.163.com/blog/static/6103248120084189481958</comments>
    <slash:comments>0</slash:comments>
    <guid isPermaLink="true">http://yunlebeijing2008.blog.163.com/blog/static/6103248120084189481958</guid>
    <pubDate>Sun, 18 May 2008 09:48:01 +0800</pubDate>
    <dcterms:modified>2008-05-18T10:05:41+08:00</dcterms:modified>
  </item>    
  <item>
  	<title><![CDATA[直击心底的30句经典名言赏析：骄者必败等]]></title>	
    <link>http://yunlebeijing2008.blog.163.com/blog/static/61032481200841322026923</link>
    <description><![CDATA[<div><DIV>
<TABLE>
<DIV>
<DIV>
<H1>直击心底的30句经典名言赏析：骄者必败等</H1></DIV>
<DIV>
<P>　　a heart of steel. 铁石心肠</P>
<P>　　to be guided by destiny.听天由命</P>
<P>　　pride goes before a fall 骄者必败 .</P>
<P>　　the supreme art of war is to subdue the enemy</P>
<P>　　without weapon 不战而屈人之兵</P>
<P>　　what is bugging you 什么事使你心烦</P>
<P>　　sworn brother 干兄弟, 盟兄弟</P>
<P>　　it’s dying art 这是已失传的手艺</P>
<P>　　gentlemen agreement 君子协定</P>
<P>　　prosperity makes friends, adversity tries them.</P>
<P>　　if you wish to be the best man, you must suffer the</P>
<P>　　bitterest of the bitter.</P>
<P>　　吃得苦中苦, 方为人上人</P>
<P>　　it is better to fight for good than to fail at the ill.</P>
<P>　　宁为善而斗, 毋屈服于恶</P>
<P>　　he who has hope has everything.</P>
<P>　　self-trust is the first secret of success.</P>
<P>　　自信心是成功的首要关键</P>
<P>　　the secret of success is constancy of purpose.</P>
<P>　　成功的秘绝在于目标坚定有恒</P>
<P>　　success grows out of struggles to overcome difficulties.</P>
<P>　　成功源于努力去克服困难</P>
<P>　　experience is the extract of suffering.</P>
<P>　　经验是受苦的结晶 </P></DIV></DIV>
<DIV align=center></DIV>
<TBODY></TBODY></TABLE></DIV></div>]]></description>
	    <author><![CDATA[yunlebeijing2008]]></author>
	    <comments>http://yunlebeijing2008.blog.163.com/blog/static/61032481200841322026923</comments>
    <slash:comments>0</slash:comments>
    <guid isPermaLink="true">http://yunlebeijing2008.blog.163.com/blog/static/61032481200841322026923</guid>
    <pubDate>Tue, 13 May 2008 14:20:26 +0800</pubDate>
    <dcterms:modified>2008-05-13T14:20:26+08:00</dcterms:modified>
  </item>    
  <item>
  	<title><![CDATA[英汉对照：直击心底的30句经典名言赏析]]></title>	
    <link>http://yunlebeijing2008.blog.163.com/blog/static/61032481200841321910418</link>
    <description><![CDATA[<div><DIV>
<TABLE>
<DIV>
<DIV>
<H1>英汉对照：直击心底的30句经典名言赏析</H1></DIV>
<DIV>
<P>　　1、Behavioral research discloses that human relations at work are just easier, perhaps because they are more regular and predictable and thus simpler to adjust to than the sporadic, the more intense and less regular relationship in the community. (R.Sayles Leonard, British writer)</P>
<P>　　2、Don't gild the lily. (William Shakespeare, British dramatist)</P>
<P>　　3、Every man's work, whether it be literature of music of pictures or architecture of anything else, is always a portrait of himself. (Samuel Brtler, Averican educator)</P>
<P>　　4、Growth and change are the law of all life. Yesterday's answers are inadequate for today's problems ----just as the solutions of today will not fill the needs of tomorrow. (Franklin Roosevelt, Averican president)</P>
<P>　　生长与变化是一切生命的法则。昨日的答案不适用于今日的问题——正如今天的方法不能解决明天的需求。(美国总统罗斯福.F.)</P>
<P>　　5、Almost any situation---good or bad ---is affected by the attitude we bring to. (Lucius Annaus Seneca, Ancient Roman philosopher)</P>
<P>　　差不多任何一种处境——无论是好是坏——都受到我们对待处境的态度的影响。(古哲学家西尼加 L A)</P>
<P>　　6、Although the world is full of suffering, it is full also of the overcoming of it. (Hellen Keller, American writer)</P>
<P>　　虽然世界多苦难，但是苦难总是能战胜的(美国作家海伦·凯勒)</P>
<P>　　7、As fruit needs not only sunshine but cold nights and chilling showers to ripen it, so character needs not only joy but trial and difficulty to mellow it. (Hugh Black, American writer)</P>
<P>　　水果不仅需要阳光，也需要凉夜。寒冷的雨水能使其成熟。人的性格陶冶不仅需要欢乐，也需要考验和困难。(美国作家布莱克 H)</P>
<P>　　8、Everything can be taken from a man but one thing; the freedom to choose his attitude in any given set of circumstances. (Leonhard Frand , German novelist)</P>
<P>　　我可以拿走人的任何东西，但有一样东西不行，这就是在特定环境下选择自己的生活态度的自由。(德国小说家弗兰克 L)</P>
<P>　　to suffer for one’s wisdom. 聪明反被聪明误</P>
<P>　　to harp on the same string. 旧调重弹</P>
<P>　　what’s done cannot be undone 覆水难收 .</P>
<P>　　to convert defeat into victory. 转败为胜</P>
<P>　　beyond one’s grasp. 鞭长莫及</P>
<P>　　to be severe with oneself and lenient with others.</P>
<P>　　严以责己宽以待人</P></DIV></DIV>
<DIV align=center></DIV>
<TBODY></TBODY></TABLE>
<TABLE>
<TBODY></TBODY></TABLE></DIV>
<DIV>&nbsp;</DIV><BR><BR></div>]]></description>
	    <author><![CDATA[yunlebeijing2008]]></author>
	    <comments>http://yunlebeijing2008.blog.163.com/blog/static/61032481200841321910418</comments>
    <slash:comments>0</slash:comments>
    <guid isPermaLink="true">http://yunlebeijing2008.blog.163.com/blog/static/61032481200841321910418</guid>
    <pubDate>Tue, 13 May 2008 14:19:10 +0800</pubDate>
    <dcterms:modified>2008-05-13T14:19:10+08:00</dcterms:modified>
  </item>    
  <item>
  	<title><![CDATA[存款准备金率]]></title>	
    <link>http://yunlebeijing2008.blog.163.com/blog/static/61032481200841283645625</link>
    <description><![CDATA[<div><DIV><SPAN>存款准备金率介绍</SPAN></DIV><B>&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;<A href="http://blog.163.com/view/284636.htm" target=_blank>存款准备金</A></B>是指金融机构为保证客户提取存款和资金清算需要而准备的在<A href="http://blog.163.com/view/79768.htm" target=_blank>中央银行</A>的存款，中央银行要求的存款准备金占其存款总额的比例就是<B>存款准备金率</B>。<BR>　　&nbsp; &nbsp;存款准备金，是限制金融机构信贷扩张和保证客户提取存款和资金清算需要而准备的资金。法定存款准备金率，是金融机构按规定向中央银行缴纳的存款准备金占其存款的总额的比率。这一部分是一个风险准备金，是不能够用于发放贷款的。这个比例越高，执行的紧缩政策力度越大。存款准备金率变动对商业银行的作用过程如下：<BR>　　&nbsp; &nbsp;当中央银行提高法定准备金率时，<A href="http://blog.163.com/view/18754.htm" target=_blank>商业银行</A>可提供放款及创造信用的能力就下降。因为准备金率提高，货币乘数就变小，从而降低了整个商业银行体系创造信用、扩大信用规模的能力，其结果是社会的<A href="http://blog.163.com/view/24269.htm" target=_blank>银根</A>偏紧，货币供应量减少，<A href="http://blog.163.com/view/427145.htm" target=_blank>利息率</A>提高，投资及社会支出都相应缩减。反之，亦然。<BR>　&nbsp; &nbsp;　打比方说，如果存款准备金率为7％，就意味着金融机构每吸收100万元存款，要向央行缴存7万元的存款准备金，用于发放贷款的资金为93万元。倘若将存款准备金率提高到7.5％，那么金融机构的可贷资金将减少到92.5万元。<BR>　&nbsp; &nbsp;　在存款准备金制度下，金融机构不能将其吸收的存款全部用于发放贷款，必须保留一定的资金即存款准备金，以备客户提款的需要，因此存款准备金制度有利于保证金融机构对客户的正常支付。随着金融制度的发展，存款准备金逐步演变为重要的<A href="http://blog.163.com/view/142663.htm" target=_blank>货币政策</A>工具。当中央银行降低存款准备金率时，金融机构可用于贷款的资金增加，社会的贷款总量和<A href="http://blog.163.com/view/171218.htm" target=_blank>货币供应量</A>也相应增加；反之，社会的贷款总量和货币供应量将相应减少。<BR>　　&nbsp; &nbsp;中央银行通过调整存款准备金率，可以影响金融机构的<A href="http://blog.163.com/view/168886.htm" target=_blank>信贷</A>扩张能力，从而间接调控货币供应量。超额存款准备金率是指商业银行超过法定存款准备金而保留的准备金占全部<A href="http://blog.163.com/view/30515.htm" target=_blank>活期存款</A>的比率。从形态上看，<A href="http://blog.163.com/view/704733.htm" target=_blank>超额准备金</A>可以是现金，也可以是具有高流动性的<A href="http://blog.163.com/view/965479.htm" target=_blank>金融资产</A>，如在中央银行账户上的准备存款等。<BR>　　&nbsp; &nbsp;2006年以来，中国经济快速增长，但经济运行中的矛盾也进一步凸显，投资增长过快的势头不减。而投资增长过快的主要原因之一就是货币信贷增长过快。提高存款准备金率可以相应地减缓货币信贷增长，保持国民经济健康、协调发展。<BR>
<DIV><SPAN><A title=返回页首 href="http://blog.163.com/public/target_blank.html#"></A></SPAN><SPAN><A></A>存款准备金率与利率的关系</SPAN></DIV>&nbsp; &nbsp;&nbsp; &nbsp; 一般地，存款准备金率上升，利率会有上升压力，这是实行紧缩的货币政策的信号。存款准备金率是针对银行等金融机构的，对最终客户的影响是间接的；利率是针对最终客户的，比如你存款的利息，影响是直接的。<BR>
<DIV><SPAN><A title=返回页首 href="http://blog.163.com/public/target_blank.html#"></A></SPAN><SPAN><A></A>现阶段上调存款准备金率的背景</SPAN></DIV>&nbsp; &nbsp;&nbsp; &nbsp; 1、因为<A href="http://blog.163.com/view/724559.htm" target=_blank>流动性过剩</A>造成的<A href="http://blog.163.com/view/4017.htm" target=_blank>通货膨胀</A>，上调准备金率可以有效降低流动性 。<BR>&nbsp; &nbsp;&nbsp; &nbsp; 2、因为现在美国的信贷危机，上调准备金率可以保证金融系统的支付能力，增加银行的抗风险能力，防止金融风险的产生。<BR>&nbsp; &nbsp;&nbsp; &nbsp; 7月19日，中国经济半年报发布。2007年上半年，中国经济增长率达11.5%，消费物价指数（CPI）则创下了33个月来的新高。一些投行当天即预测，紧缩政策已近在眼前。 <BR>　&nbsp; &nbsp;&nbsp;&nbsp;我国货币供应量多、贷款增长快、超额存款准备金率较高、市场利率走低。这一“多”、一“快”、一“高”、一“低”，表明流动性过剩问题确实比较突出。<BR>　　&nbsp; &nbsp;始自2003年下半年的这一轮宏观调控，一直试图用“点刹”的办法让经济减速，而今看来，这列快车的“刹车”效率似乎有问题。11.9%的增速，偏离8%的预期目标近4个百分点。中国经济不仅没有软着陆，反而有一发难收之势。<BR>
<DIV><SPAN><A title=返回页首 href="http://blog.163.com/public/target_blank.html#"></A></SPAN><SPAN><A></A>央行存款准备金率历次调整</SPAN></DIV>次数&nbsp; &nbsp;时间&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;调整前&nbsp; &nbsp;调整后&nbsp;&nbsp;调整幅度<BR>25&nbsp;&nbsp;08年05月20日&nbsp; &nbsp;16%&nbsp; &nbsp;&nbsp; &nbsp;16.5%&nbsp; &nbsp; 0.5%<BR>24&nbsp;&nbsp;08年04月25日&nbsp; &nbsp;15.5%&nbsp; &nbsp;16%&nbsp; &nbsp;&nbsp; &nbsp; 0.5%<BR>23&nbsp;&nbsp;08年03月25日&nbsp; &nbsp;15%&nbsp; &nbsp;&nbsp; &nbsp;15.5%&nbsp; &nbsp; 0.5%<BR>22&nbsp;&nbsp;08年01月25日&nbsp; &nbsp;14.5%&nbsp; &nbsp;15%&nbsp; &nbsp;&nbsp; &nbsp; 0.5% <BR>21&nbsp;&nbsp;07年12月25日&nbsp; &nbsp;13.5%&nbsp; &nbsp;14.5%&nbsp; &nbsp; 1%<BR>20&nbsp;&nbsp;07年11月26日&nbsp; &nbsp;13%&nbsp; &nbsp;&nbsp; &nbsp;13.5%&nbsp; &nbsp; 0.5%<BR>19&nbsp;&nbsp;07年10月13日&nbsp; &nbsp;12.5%&nbsp; &nbsp;13%&nbsp; &nbsp;&nbsp; &nbsp; 0.5%<BR>18&nbsp;&nbsp;07年09月25日&nbsp; &nbsp;12%&nbsp; &nbsp;&nbsp; &nbsp;12.5%&nbsp; &nbsp; 0.5%<BR>17&nbsp;&nbsp;07年08月15日&nbsp; &nbsp;11.5%&nbsp; &nbsp;12%&nbsp; &nbsp;&nbsp; &nbsp; 0.5% <BR>16&nbsp;&nbsp;07年06月5日&nbsp; &nbsp;&nbsp;&nbsp;11%&nbsp; &nbsp;&nbsp; &nbsp;11.5%&nbsp; &nbsp; 0.5% <BR>15&nbsp;&nbsp;07年05月15日&nbsp; &nbsp;10.5%&nbsp; &nbsp;11%&nbsp; &nbsp;&nbsp; &nbsp; 0.5% <BR>14&nbsp;&nbsp;07年04月16日&nbsp; &nbsp;10%&nbsp; &nbsp;&nbsp; &nbsp;10.5%&nbsp; &nbsp; 0.5% <BR>13&nbsp;&nbsp;07年02月25日&nbsp; &nbsp;9.5%&nbsp; &nbsp;&nbsp;&nbsp;10%&nbsp; &nbsp;&nbsp; &nbsp; 0.5% <BR>12&nbsp;&nbsp;07年01月15日&nbsp; &nbsp;9%&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;9.5%&nbsp; &nbsp;&nbsp;&nbsp;0.5% <BR>11&nbsp;&nbsp;06年11月15日&nbsp; &nbsp;8.5%&nbsp; &nbsp;&nbsp; &nbsp;9%&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;0.5% <BR>10&nbsp;&nbsp;06年08月15日&nbsp; &nbsp;8%&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;8.5%&nbsp; &nbsp;&nbsp;&nbsp;0.5% <BR>9&nbsp;&nbsp;06年07月05日&nbsp; &nbsp;&nbsp;&nbsp;7.5%&nbsp; &nbsp;&nbsp; &nbsp;8%&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;0.5% <BR>8&nbsp;&nbsp;04年04月25日&nbsp; &nbsp;&nbsp;&nbsp;7%&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;7.5%&nbsp; &nbsp;&nbsp;&nbsp;0.5% <BR>7&nbsp;&nbsp;03年09月21日&nbsp; &nbsp;&nbsp;&nbsp;6%&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;7%&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;1% <BR>6&nbsp;&nbsp;99年11月21日&nbsp; &nbsp;&nbsp;&nbsp;8%&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;6%&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;-2% <BR>5&nbsp;&nbsp;98年03月21日&nbsp; &nbsp;&nbsp;&nbsp;13%&nbsp; &nbsp;&nbsp; &nbsp; 8%&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;-5% <BR>4&nbsp;&nbsp;88年9月&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;12%&nbsp; &nbsp;&nbsp; &nbsp; 13%&nbsp; &nbsp;&nbsp; &nbsp; 1% <BR>3&nbsp;&nbsp;87年&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp; 10%&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;12%&nbsp; &nbsp;&nbsp; &nbsp; 2% <BR>2&nbsp;&nbsp;85年&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;央行将法定存款准备金率统一调整为10%<BR>1&nbsp;&nbsp;84年&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp; 央行按存款种类规定法定存款准备金率，企业存款20%，农村存款25%，储蓄存款40%<BR><BR><B></B><BR><B><BR>存款准备金率历次调整时股市表现<BR><BR>次数 时间 调整前 调整后 调整幅度 公布第二交易日上证指数表现 公布第二交易日深成指表现<BR>&nbsp; &nbsp;&nbsp;&nbsp;开盘 收盘 涨跌点数 涨跌幅% 开盘 收盘 涨跌点数 涨跌幅%<BR>24 08年04月25日 15.5% 16% 0.5% 3572..55 3557.75 -25.28 -0.71 12978.98 13104.95 190.19 +1.47<BR>23 08年03月25日 15% 15.5% 0.5% 3559.54 3629.62 3.43 +0.09 12889.76 13427.29 329.04 2.51<BR>22 08年01月25日 14.5% 15% 0.5% 4716.98 4761.69 43.95 +0.93 16201.54 15486.87 -692.85 -4.28<BR>21 07年12月25日 13.5% 14.5% 1% 5233.18 5201.18 -33.08 -0.63 17213.76 17199.01 45.11 0.26<BR>20 07年11月26 13% 13.5% 0.5% 5102.53 4958.85 -73.28 -1.46 16504.13 16057.19 -160.32 -0.99<BR>19 07年10月25 12.5% 13% 0.5% 5794.22 5562.39 -280.72 -4.80 18659.31 18175.31 -586.59 -3.13<BR>18 07年09月25 12% 12.5% 0.5% 5500.27 5425.88 59.13 -1.08 18450.46 18346.45 -72.03 -0.39<BR>17 07年08月15 11.5% 12% 0.5% 4875.51 4869.88 -2.91 -0.06 16438.68 16322.52 -29.38 -0.18<BR>16 2007年7月31日 11.50% 12.00% 0.50% 4432.27 4471.03 30.26 0.68 15051.55 15199.56 138.70 0.68<BR>15 2007年5月21日 11.00% 11.50% 0.50% 3902.35 4072.23 169.88 1.04 11693.85 12269.20 575.35 1.40<BR>14 2007年4月29日 10.50% 11.00% 0.50% 3784.27 3841.27 81.41 2.16 10719.31 10865.88 177.33 1.66<BR>13 2007年4月16日 10.00% 10.50% 0.50% 3611.63 3611.87 15.43 0.43 10301.09 10289.00 -12.09 -0.39<BR>12 2007年2月25日 9.50% 10.00% 0.50% 2999.09 3040.6 42.13 1.40 8582.47 8588.69 6.22 0.19<BR>11 2007年1月15日 9.00% 9.50% 0.50% 2818.66 2821.02 26.32 0.94 7696.24 8002.89 306.65 4.80<BR>10 2006年11月15日 8.50% 9.00% 0.50% 1930.93 1941.55 18.61 0.97 4952.15 4945.62 -6.53 -0.17<BR>9 2006年8月15日 8.00% 8.50% 0.50% 1596.06 1616.41 20.75 1.30 3919.15 3972.71 53.56 1.55<BR>8 2006年7月5日 7.50% 8.00% 0.50% 1715.28 1741.47 22.91 1.33 4287.70 4348.45 60.75 1.33<BR>7 2004年4月25日 7.00% 7.50% 0.50% 1633.27 1635.50 2.23 0.14 3770.57 3770.25 -0.32 -0.33<BR>6 2003年9月21日 6.00% 7.00% 1% 1932.90 1381.44 -9.93 -0.71 3098.41 3075.78 -22.63 -0.64<BR>5 1999年11月21日 8.00% 6.00% -2% 1468.22 1464.59 -3.88 -0.26 3658.28 3676.59 18.31 0.45<BR>4 1998年3月21日 13.00% 8.00% -5% 1186.56 1179.86 -7.64 -0.64 3940.15 3926.75 -13.4 -0.84<BR>3 1988年9月 12.00% 13.00% 1% - - - - - - - -<BR>2 87年 10.00% 12.00% 2% - - - - - - - -<BR>1 85年 央行将法定存款准备金率统一调整为10%<BR></B><BR><BR><BR><BR><BR><BR>
<DIV><SPAN><A title=返回页首 href="http://blog.163.com/public/target_blank.html#"></A></SPAN><SPAN><A></A>透视央行的屡屡上调准备金率</SPAN></DIV>&nbsp; &nbsp; <B>&nbsp; &nbsp; 旨在防止中国经济过热</B> <BR>　&nbsp;&nbsp;　 “加息属于意料之中，但加息和提高存款准备金率两大货币工具同时使用，这在本轮调控中还是第一次。”经济学家王小广接受新华社记者采访时认为，此次加息主要意图在于防止中国宏观经济从偏快走向过热。 <BR>　　&nbsp; &nbsp;今年一季度中国经济增长高达11.1％，呈现出多年所没有的快速增长。而一季度中国居民消费价格总水平同比上涨了2.7％，3月涨幅达3.3％，4月上涨达3％，经济界人士普遍认为当前存在一定通胀压力。 <BR>　　&nbsp; &nbsp;亚洲开发银行中国代表处高级经济学家汤敏说，此次央行采取的这一系列措施是这几年来较大的动作，此举表明政府不愿让经济朝着过热的方向发展，而是更加注重经济发展的质量，促使经济又好又快发展。 <BR>　　&nbsp; &nbsp;央行也表示，本次上调金融机构人民币准备金率和存贷款基准利率，旨在加强银行体系流动性管理，引导货币信贷和投资合理增长，保持物价水平的基本稳定。 <BR>　　&nbsp; &nbsp;汤敏说，目前中国经济存在通货膨胀有抬头的风险。央行系列政策能做到“防患于未然”，有效防止通货膨胀，防止资本市场过热，防止过多的外汇流入，达到防止经济过热的目标。 <BR>　　&nbsp; &nbsp;<B>深层次引导百姓理财行为</B> <BR>　　&nbsp; &nbsp;“由于流动性过剩等诸多矛盾的存在，中国经济中已存在资产价格增长过高，股票市场火热，物价上涨存在压力等现象，央行出台的组合政策能有效缓解这些矛盾问题，也能深层次地引导百姓理财行为。”中国人民大学教授赵锡军说。 <BR>　　&nbsp; &nbsp;目前，中国股市已经持续一年多的上涨，上证综合指数屡次创新高，百姓买股票、基金的热情空前高涨。央行今年一季度货币政策执行报告数据显示，前3个月投资股票开户数新增871万户，是2006年全年新增数的1.7倍。而购买基金的投资者也导致银行排队现象进一步加剧。 <BR>　　&nbsp; &nbsp;不过，在股市火热的情况下，投资风险尤其值得注意。而国内股市的火热，“赚钱财富效应”也在加剧着市场的流动性。南方基金公司基金经理苏彦祝表示，当前小幅上调存款准备金率和存贷款基准利率有利于资本市场的健康发展，适当引导投资者的投资行为。 <BR>　　&nbsp; &nbsp;中国社会科学院数量经济所所长汪同三说，这一系列措施在更好地防止中国整体经济由“偏热”走向“过热”的同时，也会让股市发展更趋于理性，避免股市风险。 <BR>　　&nbsp; &nbsp;伴随着基准利率的调整，相关房贷利率也会上调，这将适当加大购房者的压力。不过，从五年以上贷款仅上调0.09个百分点和个人住房公积金贷款利率也上调0.09个百分点的幅度来看，购房者“负担”不会太大。而各家商业银行还会有相应优惠措施，更缓解了购房者的还款压力。 <BR>　　&nbsp; &nbsp;“从前几次加息看，以20年期30万元房款为例，每次调整只是每月多交几十元，压力不大。何况，每次房款增加幅度都要等到下一个年度才调整。”在中国进出口银行工作的高鹏说。 <BR>　　&nbsp; &nbsp;经济学家王小广还认为，央行提高存贷款基准利率，客观上有利于商业银行提高金融服务质量，更好地为居民提供金融服务。目前我国存贷款利差过大，银行主要靠放贷赚取利润，导致一些银行没有把主要力量放到服务水平和服务质量的改善上来</div>]]></description>
	    <author><![CDATA[yunlebeijing2008]]></author>
	    <comments>http://yunlebeijing2008.blog.163.com/blog/static/61032481200841283645625</comments>
    <slash:comments>0</slash:comments>
    <guid isPermaLink="true">http://yunlebeijing2008.blog.163.com/blog/static/61032481200841283645625</guid>
    <pubDate>Mon, 12 May 2008 20:36:45 +0800</pubDate>
    <dcterms:modified>2008-05-12T20:38:26+08:00</dcterms:modified>
  </item>    
  <item>
  	<title><![CDATA[美国《新闻周刊》刊文称世界进入后美国时代]]></title>	
    <link>http://yunlebeijing2008.blog.163.com/blog/static/61032481200841141953899</link>
    <description><![CDATA[<div><DIV>
<DIV>
<DIV>
<DIV>
<H1>美国《新闻周刊》刊文称世界进入后美国时代</H1></DIV>
<DIV>　　核心提示：著名学者法里德·扎卡里亚日前在《新闻周刊》发表文章称当今世界已经进入了后美国时代，并表示这次世界力量的调整将会带来前所未有的和平与繁荣。 </DIV>
<DIV>
<CENTER><IMG height=392 src="http://cimg2.163.com/catchpic/F/FB/FB5F6D18FB8697330C4592CB8CA13C11.jpg" width=300 border=0></CENTER>
<CENTER><IMG height=408 src="http://cimg2.163.com/catchpic/F/F6/F6CBA84FAE24FFD344A4C16ED4C574A9.jpg" width=300 border=0></CENTER>
<P style="TEXT-INDENT: 2em">两幅漫画反映了近年来美国经济低迷不振，而印度经济却保持增长的态势。</P>
<P style="TEXT-INDENT: 2em">&nbsp; 美国《新闻周刊》最新一期封面文章发表著名学者法里德·扎卡里亚的文章称，当今世界已经进入了后美国时代，我们正在经历着现代历史上第三次重大的力量转变;第一次是15世纪前后以欧洲为代表的西方世界崛起，第二次是19世纪末美国的崛起，第三次是最近二十年开始的美国之外的世界崛起。</P>
<P style="TEXT-INDENT: 2em">这次调整和以往不同，后美国时代的世界不会充满黑暗和危险，反而是前所未有的和平与繁荣。哈佛大学的专家甚至说：“我们或许现在正处在一个自人类存在以来最和平的时期。”</P>
<P style="TEXT-INDENT: 2em">美国一直在搞双重标准。它是全球规则制定者，有时候却不按照规则行事。若干年后，当历史学家写到今天的时代，他们或许会指出，21世纪之初，美国完成一项伟大的历史使命：让世界全球化。我们不希望他们同时也写道：美国却忘了让自己全球化。</P>
<P style="TEXT-INDENT: 2em"><STRONG>不是美国在衰落</STRONG></P>
<P style="TEXT-INDENT: 2em"><STRONG>而是其他地区在崛起</STRONG></P>
<P style="TEXT-INDENT: 2em">本报综合报道 美国人现在很郁闷。4月，一项新的民意调查表明，81%的美国人认为这个国家走的是“错误路线”。这项统计在过去25年每年都会进行，今年的数字是历史最悲观的。美国人确实有理由悲观，这包括金融领域的恐慌、萧条阴影看不到头的伊拉克战争，不断攀升的失业人数，愈演愈烈的次贷风波，还有持续不断的恐怖威胁。</P>
<P style="TEXT-INDENT: 2em"><STRONG>他者的崛起</STRONG></P>
<P style="TEXT-INDENT: 2em">但美国人焦虑的根源比这深得多，那是一种感觉：在几乎各个行业，在生活的几乎各个方面，过去的格局似乎都被搅乱。在世人记忆中，做开路先锋的似乎第一次不是美国。美国发现一个新世界即将产生，但担心塑造这个新世界的是外国人。环顾四周，世界最高的建筑在中国台北，下一个将出现在迪拜;世界最大的上市公司在北京;世界最大的炼油厂正在印度建设;世界最大的客机由欧洲制造;世界最大的投资基金在阿布扎比;世界最大的电影产业是在印度宝莱坞，而非美国好莱坞;世界最大的赌场在澳门，拉斯维加斯在去年就被追上了。全世界十大富翁只有两个美国人。想想看，仅仅10年前，美国在所有这些类别中几乎都稳居榜首。</P>
<P style="TEXT-INDENT: 2em">这些情况反映了力量和态度的巨变。在美国还不停地争论反美主义的性质和程度。但当我们争论为什么他们恨我们的时候，“他们”已经前进了，而且现在对其他更有活力的地区的兴趣远远大于对美国的兴趣。世界已经从反美主义转入后美国时代。</P>
<P style="TEXT-INDENT: 2em">在2006年和2007年，世界上有124个国家的经济增长速度超过4%，这其中包括超过30个非洲国家。事实上过去20年来，工业化西方之外的国家以过去不可想象的速度发展。“新兴市场投资基金”首席投资官阿格滕马尔列出了未来世界上最大的25家跨国公司，巴西、墨西哥、韩国、中国台北各有四家，印度三家，中国两家，阿根廷、智利，马来西亚和南非各有一家。这与被美国社会大肆宣扬的中国威胁论相比，范围更广泛，这是他者的崛起——世界其他地区的崛起。</P>
<P style="TEXT-INDENT: 2em"><STRONG>第三次力量的转变</STRONG></P>
<P style="TEXT-INDENT: 2em">我们正在经历现代历史上第三次重大的力量转变。第一次是15世纪前后西方世界的崛起。那时产生了我们今天所知道的世界：科学和技术，商业和资本主义，工业和农业革命，还带来了西方世界长期的政治优势。发生在19世纪末的第二次转变是美国的崛起。工业化后，美国很快成为世界最强大的国家，比其他国家可能构建的组合还要强大。20年来，美国在各个领域的超级大国地位基本没有受到挑战，这是过去前所未有的，至少从罗马帝国2000年前统治世界以后是这样。在美国强权统治下的世界，全球经济加速发展。正是这种发展推动了现代的第三次力量转变：他者的崛起。</P>
<P style="TEXT-INDENT: 2em">在军事和政治层面，美国仍然生活在单极世界。但是，在工业金融、社会、文化等其他几乎各个领域，美国的支配地位逐渐消失。这将带来一个完全不同于我们迄今所处的场景——一个由众多地区的众多民族勾勒和支配的场景。</P>
<P style="TEXT-INDENT: 2em">对美国人来说，后美国世界自然是个令人不安的前景，但不应该如此。将要给这个世界定性的与其说是美国的衰落，不如说是其他国家的崛起。这是20年来一系列积极趋势不断发展的结果，也带来了前所未有的和平与繁荣。 (本文来源：广州日报 作者：李明波) </P></DIV>
<DIV>
<DIV>
<DIV>大飞机公司今日在上海挂牌，注册资金190亿，最大股东为国资委，出资60亿元，持股33%左右。张庆伟任公司董事长。从5月9日开始，北京所有地铁站严查液体饮料，带进地铁要先试喝</DIV></DIV></DIV></DIV></DIV></DIV></div>]]></description>
	    <author><![CDATA[yunlebeijing2008]]></author>
	    <comments>http://yunlebeijing2008.blog.163.com/blog/static/61032481200841141953899</comments>
    <slash:comments>0</slash:comments>
    <guid isPermaLink="true">http://yunlebeijing2008.blog.163.com/blog/static/61032481200841141953899</guid>
    <pubDate>Sun, 11 May 2008 16:19:53 +0800</pubDate>
    <dcterms:modified>2008-05-12T20:39:15+08:00</dcterms:modified>
  </item>    
  <item>
  	<title><![CDATA[日本拟建天军 通过《宇宙基本法》草案]]></title>	
    <link>http://yunlebeijing2008.blog.163.com/blog/static/6103248120084114627960</link>
    <description><![CDATA[<div><DIV>
<DIV>
<DIV>
<DIV>
<H1>日本拟建天军 通过《宇宙基本法》草案(组图)</H1></DIV>
<DIV>　　核心提示：继日本自卫队突破和平宪法第九条的限制成功走出国门后，日本又在为军事挺进太空铺路。5月9日，日本众议院通过《宇宙基本法》议案，拟建立“天军”。此举表明日本非军事”解禁几成定局。 </DIV>
<DIV>
<CENTER><IMG height=440 src="http://cimg2.163.com/catchpic/2/20/2066ACAE6F330C9C29625D0B7CACB20A.jpg" width=300 border=0></CENTER>
<P style="TEXT-INDENT: 2em">2006年，日本成功地发射了搭载着多功能运输卫星2号机的H-2A火箭9号机</P>
<CENTER><IMG height=225 src="http://cimg2.163.com/catchpic/C/C3/C3267423DD7ED2FAD17E0C7851FFDE43.jpg" width=300 border=0></CENTER>
<P style="TEXT-INDENT: 2em">日本间谍卫星效果图</P>
<P style="TEXT-INDENT: 2em">&nbsp; 继日本自卫队突破和平宪法第九条的限制成功走出国门后，日本又在为军事挺进太空铺路。5月9日，日本众议院一个委员会表决通过了旨在允许日本以自卫为目的、军事利用太空的《宇宙基本法》议案。这一行动打破了日本在这一领域近40年的立法限制，并将进一步扩大日本防卫省的权力范围。</P>
<P style="TEXT-INDENT: 2em"><STRONG>“非军事”解禁几成定局</STRONG></P>
<P style="TEXT-INDENT: 2em">据《日本时报》10日报道，这一议案减少了对日本太空活动的限制，即不再要求日本太空活动遵从“非军事目的”原则，只禁止有“侵略目的”的太空活动。议案还呼吁成立一个由首相直接领导的内阁机构，负责为各种太空项目的实施制定基本的太空开发规划。由于该议案是由执政的自民党和公明党以及控制参议院的主要反对党民主党联合提出的，因此预计不会在下月的参议院投票中受阻。这也就是说，日本军事利用太空的计划将在本届国会会议期(1月15日开始，为期150天)内正式成为法律。</P>
<P style="TEXT-INDENT: 2em"><STRONG>组建天军只是时间问题</STRONG></P>
<P style="TEXT-INDENT: 2em">1969年，日本根据《和平宪法》成立宇宙开发事业团，同时规定：日本不能在宇宙空间使用类似核兵器等大规模杀伤性武器。当时日本国会把“和平利用太空”解释成“非军事”。这就意味着日本自卫队不能独立开发具有高侦察性能的间谍卫星之类的太空军事武器。自民党太空开发特别委员会认为，现在是调整太空开发政策的时候了，并解释说“非侵略性的”太空军事利用“理应属于和平利用范畴”，是“符合国际标准”的。日本舆论认为，以日本的科技实力，开发出可与美国相媲美的空间力量(天军)只是时间问题。</P>
<P style="TEXT-INDENT: 2em"><STRONG>多年苦心经营间谍卫星网</STRONG></P>
<P style="TEXT-INDENT: 2em">事实上，日本目前已经有4颗具备了间谍侦察能力的卫星，但由于1969年决议的限制，日本政府一直没有公开承认其“间谍卫星”的身份。据悉，这些卫星是由H-2A火箭搭载于2003年或2007年发射升空的。其中2颗卫星是光学卫星，其他2颗则是雷达卫星。前者载有望远镜和数码照相机，可识别地面5米大的物体;后者可自动发射电波，然后把地面反射回来的信号合成黑白图像。军事专家介绍说，光学卫星的优点是空间分辨率高，而雷达卫星有一定的穿透能力。将这4颗卫星的功能结合在一起，日本就可能监视地球上的任何角落。</P>
<P style="TEXT-INDENT: 2em"><STRONG>新闻背景</STRONG></P>
<P style="TEXT-INDENT: 2em"><STRONG>航天大国竞相逐鹿太空</STRONG></P>
<P style="TEXT-INDENT: 2em">美国前总统肯尼迪曾预言：“谁控制了宇宙，谁就控制了地球;谁控制了空间，谁就控制了战争的主动权。”对外层空间的控制权就是所谓制天权。谁能夺取制天权，就能赢得制信息权、制海权和制空权，从而赢得未来战争。</P>
<P style="TEXT-INDENT: 2em"><STRONG>美：初步具备太空战能力</STRONG></P>
<P style="TEXT-INDENT: 2em">美国提出了庞大的太空计划并构建太空战体系。目前，美国空间力量已初步具备太空战能力。按照规划，2015年前后，美军将建成真正意义上的天军，形成联合航空航天力量，以夺取制天权为主要任务，实施全球监控和空天一体纵深打击，以最快速度、最少伤亡打赢战争，实现空间控制、全球作战、力量集成和全球合作等作战思想。</P>
<P style="TEXT-INDENT: 2em"><STRONG>俄：重点突破谋局部优势</STRONG></P>
<P style="TEXT-INDENT: 2em">俄罗斯“天军”1992年开始组建，至2001年正式组建完成。俄罗斯的“天军”由以下几部分组成：导弹-空间防御体系、负责实施空间计划的季托夫试验与控制中心和国家试验发射场。“天军”的任务是：空间反导;保卫卫星;控制宇宙空间;保证完成联邦空间计划。根据俄2001~2010“国家航天计划”，反卫星武器是俄罗斯重点发展对象。</P>
<P style="TEXT-INDENT: 2em">其他航天技术发达的国家，如法国、日本、英国、德国、以色列、瑞典、加拿大、澳大利亚等，也相继建立军事航天机构，筹划强占空间一席之地。 (本文来源：华龙网-重庆商报 ) </P></DIV>
<DIV>
<DIV>
<DIV>大飞机公司今日在上海挂牌，注册资金190亿，最大股东为国资委，出资60亿元，持股33%左右。张庆伟任公司董事长。从5月9日开始，北京所有地铁站严查液体饮料，带进地铁要先试喝</DIV></DIV></DIV></DIV></DIV></DIV></div>]]></description>
	    <author><![CDATA[yunlebeijing2008]]></author>
	    <comments>http://yunlebeijing2008.blog.163.com/blog/static/6103248120084114627960</comments>
    <slash:comments>0</slash:comments>
    <guid isPermaLink="true">http://yunlebeijing2008.blog.163.com/blog/static/6103248120084114627960</guid>
    <pubDate>Sun, 11 May 2008 16:06:27 +0800</pubDate>
    <dcterms:modified>2008-05-12T20:39:36+08:00</dcterms:modified>
  </item>    
  <item>
  	<title><![CDATA[央行行长周小川表示中国通胀压力有望减轻]]></title>	
    <link>http://yunlebeijing2008.blog.163.com/blog/static/61032481200841061746205</link>
    <description><![CDATA[<div><P>央行行长<A href="http://news.163.com/special/p/00011F1T/people2005zhouxiaochuan.html">周小川</A><CLK>4日在布鲁塞尔出席会议期间表示，中国的通货膨胀压力有望在二季度减轻，但今年全年的物价<NOBR style="COLOR: #6600ff; BORDER-BOTTOM: #6600ff 1px dotted; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" target="_blank" kwC(event,5)? this);? false;?>走势</NOBR>仍存在不确定性，这是近一年时间来,央行官员首度作出类似表态。</CLK></P>
<P><CLK>　　周小川解释说，包括农历新年在内的一些季节性因素推高了今年一季度的通胀水平。节日过后，消费者价格指数（CPI）将会下滑，预计4月、<NOBR style="COLOR: #6600ff; BORDER-BOTTOM: #6600ff 1px dotted; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" target="_blank" this);? false;? kwC(event,1)?>5月</NOBR>、6月3个月的CPI涨幅将会放缓。不过，在粮食和其他商品价格仍大幅波动的情况下，全年的物价走势仍存在不确定性。</CLK></P>
<P>　　在CPI持续多月高企、央行紧缩措施鱼贯出台的紧张气氛下，周小川的上述表态引人关注。中央财经大学中国银行业研究中心主任郭田勇表示，官员的说法说明我国宏观调控已取得一定成效。历经去年6次加息、10次上调存款准备金率以及大规模发行票据后，银行业的贷款冲动已得到有效控制，央行的货币供应量也回归正常水平，两项指标的回落都意味着通胀压力将得以减轻。</P>
<P><CLK>　　来自多家机构的预测显示,受农产品<NOBR style="COLOR: #6600ff; BORDER-BOTTOM: #6600ff 1px dotted; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" target="_blank" this);? false;? kwC(event,2)?>价格</NOBR>下降影响,4月份的CPI涨幅将低于3月,约在7.9%－8.1%之间。在美国次贷危机及国内通胀压力减轻的双重<NOBR style="COLOR: #6600ff; BORDER-BOTTOM: #6600ff 1px dotted; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" target="_blank" this);? false;? kwC(event,11)?>背景</NOBR>下，央行近期加息的可能性并不大。（记者陈琰）</CLK></P>
<P>　　<STRONG>相关</STRONG></P>
<P>　　<STRONG>中金预计CPI涨幅或将回落</STRONG></P>
<P><CLK>　　昨天,中金公司发布最新研究报告,首席经济学家哈继铭<NOBR style="COLOR: #6600ff; BORDER-BOTTOM: #6600ff 1px dotted; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" target="_blank" this);? false;? kwC(event,17)?>指出</NOBR>,预计4月份中国CPI涨幅为8.0%，比3月份略有放缓，5月份则有望进一步降低。</CLK></P>
<P><CLK>　　中金公司表示,根据商品价格跟踪，食品价格在4月份连续4周回落，食品通胀得到持续缓解。其中蔬菜价格<NOBR style="COLOR: #6600ff; BORDER-BOTTOM: #6600ff 1px dotted; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" target="_blank" this);? false;? kwC(event,12)?>继续</NOBR>成为下跌主力，4月累计跌幅达13.9%，水果、肉类价格继续下跌，粮食、食用油价格相对稳定。商务部全国食用农产品价格4月份平均价格比3月份环比下降1.6%。据此估计，食品类CPI可能环比下降1.6%，即同比上升20%；但受PPI上行推动，预计4月非食品类价格环比上升0.4%（即同比上升2.1%），这将使得4月份CPI同比涨幅达到8%,比3月份略有放缓。中金同时指出，商务部价格指数在4月份与农业部价格指数走势背离，因此使用不同<NOBR style="COLOR: #6600ff; BORDER-BOTTOM: #6600ff 1px dotted; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" target="_blank" this);? false;? kwC(event,8)?>数据</NOBR>来源会使4月份CPI预测具有不确定性。5月份伴随翘尾因素下降，CPI有望进一步下降。</CLK></P>
<P><CLK>　　报告还指出,美国经济将在第二季度出现明显萎缩，三季度出现反弹，四季度则再次回落。虽然美国<NOBR style="COLOR: #6600ff; BORDER-BOTTOM: #6600ff 1px dotted; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" target="_blank" this);? false;? kwC(event,6)?>公布</NOBR>的二季度GDP增速达0.6%，从整体上看好于市场预期，但是实际情况却并不乐观：除去库存量变化，一季度GDP较上季度萎缩0.2%，实际已陷入衰退。住房<NOBR style="COLOR: #6600ff; BORDER-BOTTOM: #6600ff 1px dotted; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" target="_blank" this);? false;? kwC(event,0)?>投资</NOBR>和企业投资拖累GDP增长-1.5个百分点，私人消费对GDP的贡献率仅为0.7个百分点，是2001年二季度以来的最低值，拉动经济增长的因素是净出口和政府支出。此外,上周美联储再次减息25基点至2%。在能源和食品价格不断高企的情况之下，议会传达了美联储很有可能将在6月份暂停减息的信号。美联储暂停减息将使美元贬值速度放缓，进而使得国际大宗商品价格涨幅放缓，中国的输入型通胀将得到一定抑制，这对市场是一个正面信号。(记者马岚)</CLK></P></div>]]></description>
	    <author><![CDATA[yunlebeijing2008]]></author>
	    <comments>http://yunlebeijing2008.blog.163.com/blog/static/61032481200841061746205</comments>
    <slash:comments>0</slash:comments>
    <guid isPermaLink="true">http://yunlebeijing2008.blog.163.com/blog/static/61032481200841061746205</guid>
    <pubDate>Sat, 10 May 2008 18:17:46 +0800</pubDate>
    <dcterms:modified>2008-05-10T18:17:46+08:00</dcterms:modified>
  </item>    
  <item>
  	<title><![CDATA[盖茨:重点转向广告和搜索业务 收购大门仍敞开]]></title>	
    <link>http://yunlebeijing2008.blog.163.com/blog/static/6103248120084103839395</link>
    <description><![CDATA[<div><DIV>
<UL>
<LI><SPAN>盖茨周五在雅加达接受美联社采访时表示：“我们一直觉得我们靠自己力量能够做得更好，现在我们正在这样做。”</SPAN> </LI></UL></DIV>
<DIV>
<P style="TEXT-INDENT: 2em"></P>
<P style="TEXT-INDENT: 2em">&nbsp;北京时间5月9日消息，据国外媒体报道，微软<NOBR style="COLOR: #6600ff; BORDER-BOTTOM: #6600ff 1px dotted; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" target="_blank" false;? this);? kwC(event,1)?>主席</NOBR>比尔·盖茨（Bill Gates）周五表示，在撤销其收购雅虎计划后，微软将把重点转向自己的广告和互联网搜索业务上。</CLK></P>
<P style="TEXT-INDENT: 2em"><CLK>微软在上周末撤销其以475亿美元报价收购雅虎提议后，一直没有提出一个替代<NOBR style="COLOR: #6600ff; BORDER-BOTTOM: #6600ff 1px dotted; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" target="_blank" false;? this);? kwC(event,0)?>战略</NOBR>来同它的在互联网业务中占据垄断地位的竞争对手谷歌竞争。在规模达数十亿美元互联网广告市场，这家全球最大的<NOBR style="COLOR: #6600ff; BORDER-BOTTOM: #6600ff 1px dotted; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" target="_blank" false;? this);? kwC(event,20)?>软件</NOBR>制造商如何在不实施诸如收购雅虎这样重要动作的情况下才能提高它的市场份额，这是分析师一直在揣测的事情。盖茨周五在雅加达接受美联社采访时表示：“<NOBR style="COLOR: #6600ff; BORDER-BOTTOM: #6600ff 1px dotted; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" target="_blank" false;? this);? kwC(event,9)?>我们</NOBR>一直觉得我们靠自己力量能够做得更好，现在我们正在这样做。”他说：“对于我们来说首选战略就是聘请优秀的工程师，做出惊人的业绩。”</CLK></P>
<P style="TEXT-INDENT: 2em"><CLK>盖茨称微软实施收购的大门仍然是敞开的，但是他拒绝透露收购<NOBR style="COLOR: #6600ff; BORDER-BOTTOM: #6600ff 1px dotted; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" target="_blank" false;? this);? kwC(event,2)?>对象</NOBR>细节，如收购对象是否包括社交网站Facebook，微软已经持有该社交网站1.6%。微软已经开发出自己的搜索广告平台并且以60亿美元收购了互联网广告公司aQuantive，但是其美国网络业务处于亏损之中。<NOBR style="COLOR: #6600ff; BORDER-BOTTOM: #6600ff 1px dotted; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" target="_blank" false;? this);? kwC(event,3)?>微软</NOBR>美国搜索市场份额只有10%，而它的竞争对手谷歌的美国搜索市场份额为58%，雅虎为22%。</CLK></P>
<P style="TEXT-INDENT: 2em"><CLK>盖茨还透露，比尔与美琳达·盖茨基金会(Bill and Melinda Gates Foundation)已经捐赠300万<NOBR style="COLOR: #6600ff; BORDER-BOTTOM: #6600ff 1px dotted; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" target="_blank" false;? this);? kwC(event,5)?>美元</NOBR>，用于在降低缅甸飓风灾情努力中的援助，并且向在这次缅甸飓风灾害中成员失散后重聚家庭提供软件。盖茨日前在印度尼西亚的政府<NOBR style="COLOR: #6600ff; BORDER-BOTTOM: #6600ff 1px dotted; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" target="_blank" false;? this);? kwC(event,12)?>领导</NOBR>人论坛上同当地官员进行了会面，其中包括印度尼西亚总统苏希洛(Susilo Bambang Yudhoyono)。</CLK></P>
<P style="TEXT-INDENT: 2em"><CLK>在领导微软长达三十年后，盖茨将于今年7月份从微软主席职位上退下，那之后他只会部分时间呆在公司。他说：“我仍然会在软件上<NOBR style="COLOR: #6600ff; BORDER-BOTTOM: #6600ff 1px dotted; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" target="_blank" false;? this);? kwC(event,7)?>工作</NOBR>，但是我将会更多地工作在全球健康和全球发展问题。”通过每年支出30亿美元，该盖茨基金会希望减少由疟疾和爱滋病引起的死亡，提高互联网普及，推进社会责任 </CLK><IMG height=11 alt=古丰 src="http://tech.163.com/newimg/arc_d.gif" width=12 border=0></P></DIV><A href="http://tech.163.com/08/0509/20/4BHEAK6T000915BF.html" target=_blank></A></div>]]></description>
	    <author><![CDATA[yunlebeijing2008]]></author>
	    <comments>http://yunlebeijing2008.blog.163.com/blog/static/6103248120084103839395</comments>
    <slash:comments>0</slash:comments>
    <guid isPermaLink="true">http://yunlebeijing2008.blog.163.com/blog/static/6103248120084103839395</guid>
    <pubDate>Sat, 10 May 2008 15:08:39 +0800</pubDate>
    <dcterms:modified>2008-05-10T15:14:03+08:00</dcterms:modified>
  </item>    
  <item>
  	<title><![CDATA[微软就欧盟8.99亿欧元最新处罚提起上诉]]></title>	
    <link>http://yunlebeijing2008.blog.163.com/blog/static/610324812008410337914</link>
    <description><![CDATA[<div><DIV>
<UL>
<LI><SPAN>微软要求欧盟法院推翻或减少欧盟最近对它的处以8.99亿欧元(14亿美元)的罚款，欧盟作出此处罚的原因是声称微软没有能够遵守它此前作出的一个反垄断裁决。</SPAN> </LI></UL></DIV>
<DIV>
<P style="TEXT-INDENT: 2em">北京时间<NOBR style="COLOR: #6600ff; BORDER-BOTTOM: #6600ff 1px dotted; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" target="_blank" false;? this);? kwC(event,2)?>5月</NOBR>9日消息，微软要求欧盟法院推翻或减少欧盟最近对它的处以8.99亿欧元(14亿美元)的罚款，欧盟作出此处罚的原因是声称微软没有能够遵守它此前作出的一个反垄断裁决。</CLK></P>
<P style="TEXT-INDENT: 2em"><CLK>微软发言人杰西·勃斯崔特(Jesse Verstraete)在一封电子邮件声明中表示，此上诉被微软提交给了在卢森堡公国的<NOBR style="COLOR: #6600ff; BORDER-BOTTOM: #6600ff 1px dotted; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" target="_blank" false;? this);? kwC(event,6)?>欧洲</NOBR>第二高等法院-欧洲初审法院(The European Court of First Instance)。他称，微软正在寻求该法院对此案的重新审理。</CLK></P>
<P style="TEXT-INDENT: 2em"><CLK>英国国际法及比较法学院(British Institute of International and Comparative Law)的竞争事务律师和<NOBR style="COLOR: #6600ff; BORDER-BOTTOM: #6600ff 1px dotted; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" target="_blank" false;? this);? kwC(event,9)?>资深</NOBR>研究人员菲利普·马斯登(Philip Marsden)表示：“在审理上诉案中，该法院曾有减少欧委会作出的处罚数额不错的记录。对这样的罚款，微软有这样的上诉权利，特别是关于遵守欧委会作出的这样一个有争议的和含糊的要求。”巴斯登并不是微软这个案子的相关审理人员。</CLK></P>
<P style="TEXT-INDENT: 2em"><CLK>欧盟反垄断监管机构欧委会2月27日作出了对微软处以8.99亿欧元的罚款处罚，声称微软没有能够遵守其2004年作出的反垄断判决。按照2004年的判决，微软受到4.97亿欧元的罚款处罚，当时还判决微软向竞争对手提供允许服务器连接微软<NOBR style="COLOR: #6600ff; BORDER-BOTTOM: #6600ff 1px dotted; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" target="_blank" false;? this);? kwC(event,1)?>视窗</NOBR>平台的数据。允许微软收取网络数据技术方面合理的版权费用。</CLK></P>
<P style="TEXT-INDENT: 2em"><CLK>欧盟竞争政策出台50年来，微软是第一个因没有能够遵守欧盟的判决而遭受处罚罚款的公司。欧委会发现，竞争对手必须将他们的产品与微软视窗<NOBR style="COLOR: #6600ff; BORDER-BOTTOM: #6600ff 1px dotted; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" target="_blank" false;? this);? kwC(event,0)?>操作系统</NOBR>进行连接，但是微软在这方面收取的许可权费用过高。加上最新的这次处罚罚款，欧委分对微软的处罚罚款累计为16.8亿欧元。</CLK></P>
<P style="TEXT-INDENT: 2em"><CLK>欧洲法院在去年9月份曾驳回微软不服欧委会2004年判决而提出的上诉，这实际上意味着微软在截止那时之前的长达三年中没有遵守欧委会的反垄断判决。在法院作出终裁之前，微软有权利要求举行一个口头的听讼会。该<NOBR style="COLOR: #6600ff; BORDER-BOTTOM: #6600ff 1px dotted; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" target="_blank" false;? this);? kwC(event,12)?>公司</NOBR>还可以向欧盟最高法院——欧洲法院(European Court of Justice)提出不满任何裁决的上诉。但是，欧委会发言人乔纳森·托德（Jonathan Todd）在接受电话采访时表示：“欧委会自信地认为，对微软处以罚款的处罚是<NOBR style="COLOR: #6600ff; BORDER-BOTTOM: #6600ff 1px dotted; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" target="_blank" false;? this);? kwC(event,7)?>法律</NOBR>的要求。”</CLK></P>
<P style="TEXT-INDENT: 2em"><CLK>微软同欧盟之间的法律大战到目前为止并没有结束。今年1月份，欧盟监管机构启动了关于微软是否利用其在字处理<NOBR style="COLOR: #6600ff; BORDER-BOTTOM: #6600ff 1px dotted; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" target="_blank" false;? this);? kwC(event,5)?>软件</NOBR>和电子表格软件市场的垄断地位阻碍竞争对手的调查，该调查也包括微软是否非法地将其互联网浏览器捆绑进它的视窗操作系统。</CLK></P>
<P style="TEXT-INDENT: 2em"><CLK>微软一直在寻求解决它同欧盟之间的法律争端。去年12月份，该公司就许可条件签署了一个<NOBR style="COLOR: #6600ff; BORDER-BOTTOM: #6600ff 1px dotted; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" target="_blank" false;? this);? kwC(event,8)?>协议</NOBR>，即允许开源产品与它的视窗操作系统连接。微软股价截止纽约时间周五下午4时在纳斯达克股市报收于29.39美元，每股上涨了12美分。这家<NOBR style="COLOR: #6600ff; BORDER-BOTTOM: #6600ff 1px dotted; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" target="_blank" false;? this);? kwC(event,4)?>全球</NOBR>最大的软件制造商股价，今年以来已经下跌了17%。</CLK></P></DIV></div>]]></description>
	    <author><![CDATA[yunlebeijing2008]]></author>
	    <comments>http://yunlebeijing2008.blog.163.com/blog/static/610324812008410337914</comments>
    <slash:comments>0</slash:comments>
    <guid isPermaLink="true">http://yunlebeijing2008.blog.163.com/blog/static/610324812008410337914</guid>
    <pubDate>Sat, 10 May 2008 15:03:07 +0800</pubDate>
    <dcterms:modified>2008-05-10T15:14:28+08:00</dcterms:modified>
  </item>    
  <item>
  	<title><![CDATA[老汉训驴]]></title>	
    <link>http://yunlebeijing2008.blog.163.com/blog/static/610324812008410114840453</link>
    <description><![CDATA[<div>一农村老汉赶着毛驴到县城买化肥。来到县供销社，老汉将驴拴在一棵树上，走进屋内。他刚向售货员打听化肥的价钱，就听到外边有人叫喊：“谁的驴，谁的驴？”<BR><BR>　　老汉一听急了，边往外边跑边答应：“我的驴，我的驴！”还未等老汉站稳，两个城管员便递上一张小纸条，厉声说道：“驴啃树皮两口，罚款５０元！”<BR><BR>　　老汉无奈，乖乖交了一张大票。<BR><BR>　　城管员扬长而去。<BR><BR>　　老汉越想越窝火，他气得走到驴前，啪，啪！打了驴两个耳刮子，随口说道：“你还以为你是‘吃官粮’的呢，走哪儿吃哪！”<BR><BR>　　驴“嗷―嗷―”叫了起来。老汉“啪，啪！”又打了驴两耳刮：“嗬，你还挺高兴，走哪儿唱哪儿呢！”<BR><BR><CLK>　　驴“腾―腾―”跳了起来。老汉“啪，啪！”又打了驴两个耳刮：嗬，你还挺<NOBR style="COLOR: #ec008c; BORDER-BOTTOM: #ec008c 1px dotted; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" false;? this);? kwC(event,0)? target="_blank">精神，走哪儿跳哪儿呢！”<BR><BR>　　驴“扑通”一声，趴在了地上。老汉弯了下腰，“啪，啪！”又打了驴两个耳&nbsp;刮：“嗬，你还没说没管，走哪儿睡哪儿呢！”</div>]]></description>
	    <author><![CDATA[yunlebeijing2008]]></author>
	    <comments>http://yunlebeijing2008.blog.163.com/blog/static/610324812008410114840453</comments>
    <slash:comments>0</slash:comments>
    <guid isPermaLink="true">http://yunlebeijing2008.blog.163.com/blog/static/610324812008410114840453</guid>
    <pubDate>Sat, 10 May 2008 11:48:40 +0800</pubDate>
    <dcterms:modified>2008-05-10T11:49:16+08:00</dcterms:modified>
  </item>    
  <item>
  	<title><![CDATA[电脑族的“营养救生圈”]]></title>	
    <link>http://yunlebeijing2008.blog.163.com/blog/static/61032481200841011248558</link>
    <description><![CDATA[<div><P align=left><SPAN></SPAN>　　一项调查显示，常用电脑的人群中，感到眼睛疲劳的占83%，肩酸腰痛的占63.9%，头痛和食欲不振的则占56.1%和54.4%，其他不良反应还包括自律神经失调、忧郁症、动脉硬化性精神病等等。 </P>
<P>　　眼睛疲劳、近视、老化;肩酸腰痛;头痛、食欲不振……就像我们离不开电脑一样，这些疾病几乎是所有常用电脑者无法摆脱的麻烦。浙江省立同德医院健康专家近日提醒说，合理膳食，及时补充营养，刷新自己的<STRONG>饮食菜单</STRONG>，是电脑一族抵御这些疾病侵害而不得不抓牢的“救生圈”。 </P>
<P><STRONG>拯救双眼：胡萝卜、菠菜</STRONG> <BR><BR>　　长时间注视电脑荧光屏，视网膜上的感光物质视紫红质消耗加快，若未能及时补充其合成物质维生素A和相关营养素，会导致视力下降、眼痛、怕光、暗适应能力降低等等。 <BR><BR>　　维生素A和β-胡萝卜素有助于补肝明目，缓解眼睛疲劳。维生素A主要存在于各种动物的肝脏、鱼肝油、蛋黄中，植物性食物只能提供维生素A原。β-胡萝卜素主要存在于胡萝卜、西红柿、菠菜等蔬果中。 </P>
<P><STRONG>&nbsp;&nbsp;&nbsp;&nbsp; 维生素C</STRONG>对眼睛也十分有益。人眼中维生素C的含量比血液中高出数倍。随着年龄增长，维生素C含量明显下降，晶状体营养不良，久而久之会引起晶状体变性。所以要多吃维生素C含量丰富的蔬菜、水果。 <BR><BR>　　胡萝卜富含蔗糖、葡萄糖、淀粉等，其中以维生素A原的含量最多，其作用和鱼肝油相似。此外，胡萝卜还含有丰富的胡萝卜素，可维护眼睛和皮肤的健康。 <BR><BR>　　菠菜含有蛋白质、脂肪、碳水化合物、粗纤维、钙、磷、铁、胡萝卜素、核黄素等，它不仅是营养价值高的蔬菜，也是护眼佳品。</P>
<P><STRONG>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;其他明目食品</STRONG>：西红柿、韭菜、枸杞子、青椒、杏、枣、红薯。 <BR><BR><STRONG>拯救骨骼：含钙量高的食物 <BR></STRONG><BR>　　使用电脑，往往长期处于强迫体位(指身体的某个部分处于非自然状态时的体位)，易导致腰、颈、肩、肘、腕等肌肉骨骼系统的疾患。 <BR><BR>　　减轻电脑操作对肌肤骨骼的伤害，在营养方面，要多吃含钙量高、有益骨骼的食物。 </P>
<P><STRONG>&nbsp;&nbsp;&nbsp;&nbsp; 牛奶、酸奶</STRONG>不仅含钙量高，而且牛奶中的乳酸能促进钙的吸收，是最好的天然钙源。 <BR><BR>　　油菜的营养成分含量及其食疗价值可称得上蔬菜中的佼佼者。其钙、铁含量十分丰富，常吃油菜有清血降压、强健骨骼、清热解毒的作用。 </P>
<P><STRONG>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;黑芝麻</STRONG>是很好的补钙来源，其补钙、养生效果优于白芝麻数倍。不爱喝牛奶的人，可以一天吃三匙黑芝麻替代。 <BR><BR>　　<STRONG>黄豆</STRONG>是高蛋白食物，含钙量很高，且富含赖氨酸和易被人体吸收利用的铁。其他豆制品也是补钙良品，150克豆腐含钙高达500毫克。 <BR><BR>　　<STRONG>其他健骨食品</STRONG>：西兰花、芹菜、紫菜。 </P></div>]]></description>
	    <author><![CDATA[yunlebeijing2008]]></author>
	    <comments>http://yunlebeijing2008.blog.163.com/blog/static/61032481200841011248558</comments>
    <slash:comments>0</slash:comments>
    <guid isPermaLink="true">http://yunlebeijing2008.blog.163.com/blog/static/61032481200841011248558</guid>
    <pubDate>Sat, 10 May 2008 11:24:08 +0800</pubDate>
    <dcterms:modified>2008-05-10T11:25:04+08:00</dcterms:modified>
  </item>    
 </channel>
</rss>