vote up 0 vote down star
1

Hello,

It's possible to create a type idenitifier for example:

type PByte = ^Byte;

Is it possible to do the following:

function a:shortint;
begin
  Exit(8);
end;

type b = a;

so you can call "b" and "a". Is it possible?

I'm asking,because I'd like to replace "Exit" with "return" so I can call this:

return(5);// for example
flag

3  
Exit is a keyword for the compiler. Why do you want to change it to return? – Tobias Langner Jul 13 at 10:44
1  
Tobias, the reverse frequently happens with new C programmers. They try to write a library of macros that make C look like their previous language, such as by defining begin to be an opening brace. The questions John has asked indicate that he's also learning C#, so he's probably trying to make them look a little more similar. – Rob Kennedy Jul 13 at 14:40

2 Answers

vote up 6 vote down check

It seems to me you are confusing function types and definitions. You can create type for methods and functions, and you use them every day in Delphi, such as TNotifyEvent, which is the type of methods that is called on most operations with user controls. Such types allow you to define functions corresponding with a certain header (i.e. expected parameters and return value).

A whole different issue is function pointers - a pointer to a specific instance of a function, so that you can "call" the pointer and it will invoke the function. The pointer may be of a function of a certain type (as described above), but the two issues have practically nothing to do with one another.

A third totally unrelated thing is a call-stack of functions. The Exit, as mentioned by Tobias, is a reserved compiler directive and not a function per se.

To conclude, for all practical purposes what you want to achieve is not right and is not possible. You may be able to "cheat" Delphi into accepting something like that, but it would just be wrong IMHO.

link|flag
vote up 1 vote down

You should use at least Delphi 2009. There is new Exit(Result) construct.

If you prefer stick with the old Delphi's version, you should check this out. There is no ready functionality for Exit(Result), but it is very easy to implement by using plugins.

link|flag
1  
He's already demonstrating the new syntax for Exit. That's not what it's asking for. He's asking for a way to no longer call it Exit. – Rob Kennedy Jul 13 at 14:35
Indeed, I've missed this. But even in this case he can use the DLangExtensions. – Alexander Jul 14 at 6:06

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.