请教注释的问题(37分)

  • 主题发起人 主题发起人 刘亚林
  • 开始时间 开始时间

刘亚林

Unregistered / Unconfirmed
GUEST, unregistred user!
delphi有三种加注释的方式:
{ },(* *),//
请问:
  1。它们分别能给多少行加注释,其中//只能给一行代码加注释吗?
  2。它们分别在被注释的代码的前面还是后面?
请以一段代码为例,给我讲一下好吗?我把分全给了。
 
1.//只能给一行代码加注释
2.{ },中间的所有行
 
{ },(* *)相同可以注释任意行 //注释一行

{ },(* *) 再其中间的为注释 在//后面的为注释


a:=b;{将b的值给a}

a:=b;(*将b的值给a*)

a:=b;//将b的值给a

 
{ },(* *)是放在被注释行的前面还是后面?
比如:
function compare(a,b:integer):integer;
begin
……
end;
 
是这样:
{以下是个比较函数}
function compare(a,b:integer):integer;
begin
……
end;

还是这样:
function compare(a,b:integer):integer;
begin
……
end;
 {以上是个比较函数}
 
没有什么关系呀。都可以
习惯是:
{比较函数}
function compare(a,b:integer):integer;
begin
……
end;
 
谢谢啦~~
 
后退
顶部