D语言中的in/inout/out参数

D语言中的in/inout/out参数
private  import std.stdio, std.process;

void  test( int  a, inout  int  b,  out   int  c)
{
    writefln(a);
    writefln(b);
    writefln(c);
    a 
=   3 ;
    b 
=   5 ;
    c 
=   7 ;
}

void  main ()
{
    
int  a  =   0 , b  =   1 , c  =   2 ;
    test(a, b, c);
    assert (a 
==   0 );
    assert (b 
==   5 );
    assert (c 
==   7 );
    std.process.system(
" pause " );
}

在上面的例子里,程序在test函数中的输出语句将输出:
0
1
0
也就是说,out参数取值是无意义的,它只用于赋值。

这里有一个很大的问题,调用test(a,b,c)时,调用者对于c的值被改变可能毫无知觉,甚至成为隐藏很深的BUG。对此,许多人建议加强检查,比如在调用时,必须指明inout/out:
test(a, inout b,  out  c);

似乎能够起到一些警示作用,不过这样一来,语法上倒不怎么简练了。

你可能感兴趣的:(D语言中的in/inout/out参数)