1.4 注释

<script>function StorePage(){d=document;t=d.selection?(d.selection.type!='None'?d.selection.createRange().text:''):(d.getSelection?d.getSelection():'');void(keyit=window.open('http://www.365key.com/storeit.aspx?t='+escape(d.title)+'&u='+escape(d.location.href)+'&c='+escape(t),'keyit','scrollbars=no,width=475,height=575,left=75,top=20,status=no,resizable=yes'));keyit.focus();}</script>

简单点说,C++的注释有两种:一种是/**/,另一种是//。

/**/可以用于跨行:

/*
* 这是我们第一次看到++的类定义
* 类可用于基于对象和
* 面向对象编程中screen 类的
* 实现代码在第13 章中
*/

也可以用于一行:

void home();/* 将光标移到 0 0 */

而//注释符只能用于一行:

void home(); // 将光标移至 0,0

你可能感兴趣的:(编程,C++,c,C#)