What is the default value of 'Result' in D

2020-01-27 06:25发布

Is there any guaranteed default value for the Result variable of a function, like 0, '' or nil? Or should Result always be initialised before use?

I have a function returning a string like this:

function Foo(): String
begin
    while {...} do
    Result := Result + 'boingbumtschak';
end;

It worked fine, but now I get some strings containing contents from a previous call to the function. When I add a Result := '' at the beginning, it is OK. When should I initialize the Result variable and when don't I have to? (strings, primitives, Class instances (nil))

标签: delphi
3条回答
倾城 Initia
2楼-- · 2020-01-27 07:14

A function return value of type string is actually treated by the compiler as an implicit var parameter. When the function begins execution, the Result variable contains whatever is in the local variable to which the return value will subsequently be assigned.

Accordingly you should always initialise function return values. This advice holds not only for strings, but for all data types.

This issue was discussed only yesterday here on Stack Overflow.

查看更多
我命由我不由天
3楼-- · 2020-01-27 07:17

I don't know what it's like in Delphi, but I always initialize variables to a sane value before I perform operations on them (even if that sane value is null, which it might very well be in some situations). Many times it's unneeded, but in those instances, I count on the compiler or JITter to optimize the assignment out if it wants to, rather than relying on potentially undocumented language semantics or compiler implementation details. Maybe it's my background in C, which in and of itself essentially guarantees nothing about initial values, but it feels worthwhile to spend the extra one line of code (at most) in order to get clearer code. By explicitly assigning a value before you start working on the variable, you establish a clear contract with whoever is reading the code; they can trust that their idea of what the starting value of the variable is, actually holds.

As for this particular question, though; isn't Result supposed to be function-local in scope? I would be very surprised if such a variable, even though special, kept values from previous invocations of the function.

查看更多
劳资没心,怎么记你
4楼-- · 2020-01-27 07:24

If the function exits without assigning a value to Result or the function name, then the function's return value is undefined.

see Delphi Reference > Procedures and Functions > Function Declarations

查看更多
登录 后发表回答