5
如何打印輸入參數?如何打印inout參數?
import std.stdio;
void main()
{
foo(2);
return;
}
inout(int) foo(inout(int) x)
{
writeln(x);
return x;
}
編譯器輸出:
c:\D\dmd2\windows\bin\..\..\src\phobos\std\conv.d(3881): Error: template instance Unqual!(__T4ImplTNgiZ) does not match template declaration Unqual(T)
c:\D\dmd2\windows\bin\..\..\src\phobos\std\stdio.d(757): Error: template instance std.conv.toTextRange!(inout(int), LockingTextWriter) error instantiating
c:\D\dmd2\windows\bin\..\..\src\phobos\std\stdio.d(1708): instantiated from here: write!(inout(int), char)
x.d(11): instantiated from here: writeln!(inout(int))
c:\D\dmd2\windows\bin\..\..\src\phobos\std\stdio.d(1708): Error: template instance std.stdio.File.write!(inout(int), char) error instantiating
x.d(11): instantiated from here: writeln!(inout(int))
x.d(11): Error: template instance std.stdio.writeln!(inout(int)) error instantiating
此外,串不與INOUT參數工作。
更新:我剛剛發現了(通過試驗和錯誤),下面的工作:
writeln(cast(const)x);
這是正常的方法還是我失去了一些東西?
無助於找到問題的解決方案,但是您希望使用返回類型前面的'inout'屬性來實現什麼?如果這是一種方法,那將意味着'this'將被聲明爲inout。在這種情況下,我寧願使用'int foo(inout(int)x)inout',就像使用'const'或'pure'一樣。由於這是一個免費函數,我假設你的意思是像'inout(int)foo(inout(int)x)'。但是因爲'int'是一個原始類型,並且無論如何都會被複制,所以你可以把它放在外面。對於複合/構造類型,這是另外一個故事。 –
你是絕對正確的,謝謝,複製錯誤的代碼...我想實現的目標:只是測試inout根據inout參數返回類型的變化。 – gerleim