码迷,mamicode.com
首页 > Windows程序 > 详细

delphi const

时间:2018-06-14 14:46:34      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:判断   将不   指定   ring   string   函数参数   过程   需要   UNC   

//Const关键字用于声明常量, 使用const声明的数据将不能在程序中被改变.
//也可以用来声明函数参数, 用const指定的参数不允许在函数中改变.
const MyFileName = ‘Delphi‘;
const MyInteger = 100;

//用Const声明常量不需要指出其数据类型, 系统会自动判断类型, 并作自动调整.
//函数中可以用const声明不可更改的参数
function X(const i: Integer): string;
//此时在函数操作过程中, i的值不可改变.

delphi const

标签:判断   将不   指定   ring   string   函数参数   过程   需要   UNC   

原文地址:https://www.cnblogs.com/yangxuming/p/9181920.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!