Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Programming
»
General
»
questions concerning procedural types
Free Pascal
Website
Downloads
Wiki
Documentation
Bugtracker
Mailing List
Lazarus
Website
Downloads (Laz+FPC)
Packages (OPM)
FAQ
Wiki
Documentation (RTL/FCL/LCL)
Bugtracker
CCR Bugs
GIT
Mailing List
Other languages
Foundation
Website
Useful Wiki Links
Project Roadmap
Getting the Source
Screenshots
How to use the forum
Forum Rules
About donations (wiki)
Bookstore
Computer Math and Games in Pascal
(preview)
Lazarus Handbook
Search
Advanced search
Recent
Review from FreePascal
by
n7800
[
Today
at 10:56:35 pm]
TCHATGPT — An Artificial ...
by
marcelomaurinmartins@gmai
[
Today
at 10:38:28 pm]
FPC Unleashed (async/awai...
by
srvaldez
[
Today
at 10:33:04 pm]
Network drop and firewall
by
kupferstecher
[
Today
at 07:11:07 pm]
Rounding issues (only wit...
by
Hartmut
[
Today
at 06:46:35 pm]
How to check my own certi...
by
LeP
[
Today
at 05:04:49 pm]
How can I get names of CO...
by
Thaddy
[
Today
at 04:55:08 pm]
Accessing VRAM memory wit...
by
Thaddy
[
Today
at 01:31:19 pm]
Fixed an RV32ec compiler ...
by
ccrause
[
Today
at 12:04:05 pm]
[SOLVED} Copying existing...
by
Davo
[
Today
at 11:59:45 am]
TDWEdit
by
Ed78z
[
Today
at 09:53:10 am]
Elite Arcade
by
Zvoni
[
Today
at 08:17:20 am]
Which quantized model wor...
by
LeP
[July 20, 2026, 10:34:07 pm]
PasFLTK - Binding for FLT...
by
Dibo
[July 20, 2026, 10:26:31 pm]
[Closed]Indy10 hangs the ...
by
marcov
[July 20, 2026, 03:52:59 pm]
Slow app start on M5 MacB...
by
pleumann
[July 20, 2026, 03:07:54 pm]
Lazarus components
by
threedslider
[July 20, 2026, 02:37:23 pm]
Many recent books on Laza...
by
threedslider
[July 20, 2026, 02:27:45 pm]
[Solved]Setting the CURSO...
by
jamie
[July 20, 2026, 11:33:52 am]
Lazarus for Windows on aa...
by
Thaddy
[July 20, 2026, 09:39:06 am]
FastCGI vs. CGI
by
egsuh
[July 20, 2026, 06:33:08 am]
I have made some progress...
by
onionmixer
[July 20, 2026, 12:32:08 am]
Lazarus Bugfix Release 4....
by
n7800
[July 19, 2026, 10:59:09 pm]
Can not load postgres cli...
by
martinm
[July 19, 2026, 10:17:31 pm]
Gtk3 widgetset - call for...
by
zeljko
[July 19, 2026, 08:21:54 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: questions concerning procedural types (Read 1355 times)
anonymousstranger
New Member
Posts: 49
questions concerning procedural types
«
on:
January 17, 2021, 02:54:42 am »
1) Given:
Code: Pascal
[Select]
[+]
[-]
Type
TOneArgCcall
=
Procedure
(
Var
X
:
integer
)
;
var
proc
:
TOneArgCcall
;
Procedure
printit
(
Var
X
:
Integer
)
;
begin
WriteLn
(
x
)
;
end
;
begin
Proc
:
=
@
printit
;
end
.
How does one pass a value into printit through proc? I'm kind of fuzzy on how this works.
2)Say you have a procedural type that references a procedure/function in a library. does the procedural type also require the "external" tag?
«
Last Edit: January 17, 2021, 03:05:41 am by anonymousstranger
»
Logged
Blaazen
Hero Member
Posts: 3241
POKE 54296,15
Re: questions concerning procedural types
«
Reply #1 on:
January 17, 2021, 03:22:35 am »
Since you pass variable x by reference (
var
), you have to write:
Code: Pascal
[Select]
[+]
[-]
var
i
:
Integer
;
begin
Proc
:
=
@
printit
;
i
:
=
5
;
Proc
(
i
)
;
end
;
i
can be global variable as well.
Don't know about external keyword.
Logged
Lazarus 2.3.0 (rev main-2_3-2863...) FPC 3.3.1 x86_64-linux-qt Chakra, Qt 4.8.7/5.13.2, Plasma 5.17.3
Lazarus 1.8.2 r57369 FPC 3.0.4 i386-win32-win32/win64 Wine 3.21
Try Eye-Candy Controls:
https://sourceforge.net/projects/eccontrols/files/
anonymousstranger
New Member
Posts: 49
Re: questions concerning procedural types
«
Reply #2 on:
January 17, 2021, 05:09:13 am »
cool
thanks.
Logged
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Programming
»
General
»
questions concerning procedural types
TinyPortal
© 2005-2018