会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
蓝懒虫
博客园
首页
新随笔
联系
订阅
管理
2016年2月29日
ASCII、Unicode、GBK和UTF-8字符编码的区别联系
摘要: Unicode is a character set - not an encoding. The list of Unicode characters contains characters from ASCII to Egyptian Hieroglyphs - over a million c
阅读全文
posted @ 2016-02-29 10:46 蓝懒虫
阅读(222)
评论(0)
推荐(0)
2016年2月2日
[Delphi]过程Procedure动态调用
摘要: 过程也可以像通用变量一样声明、调用 procedure HelloWorld; begin ShowMessage('HI'); end; procedure HelloWorld2(a:String); begin ShowMessage('HI'); end; procedure TFormSp
阅读全文
posted @ 2016-02-02 15:22 蓝懒虫
阅读(1809)
评论(0)
推荐(0)
【转载】Understanding and using FireMonkey Layouts
摘要: http://delphi.org/2015/12/skill-sprint-using-firemonkey-layouts/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+DelphiDotOrg+%28Delphi.org
阅读全文
posted @ 2016-02-02 14:31 蓝懒虫
阅读(338)
评论(0)
推荐(0)
[FireMonkey]用IdHTTP发送Rest API
摘要: procedure TForm1.Button1Click(Sender: TObject); var response : string; JSONToSend: TStringStream; begin JSONToSend := TStringStream.Create('{}'); IdHT
阅读全文
posted @ 2016-02-02 14:26 蓝懒虫
阅读(268)
评论(0)
推荐(0)
[FireMonkey]获取设备(平台)类型
摘要: uses System.Devices; case TDeviceInfo.ThisDevice.DeviceClass of TDeviceInfo.TDeviceClass.Desktop: ... TDeviceInfo.TDeviceClass.Phone: ... TDeviceInfo.
阅读全文
posted @ 2016-02-02 13:56 蓝懒虫
阅读(166)
评论(0)
推荐(0)
[Delphi]函数与过程注释
摘要: 当一个项目非常复杂且项目生命周期长,代码的注释就显得非常必要。 /// <summary>将指定索引的子结点移除</summary> /// <param name="AItemIndex">要移除的子结点索引</param> /// <returns>返回被移除的子结点,如果指定的索引不存在,返回
阅读全文
posted @ 2016-02-02 11:47 蓝懒虫
阅读(437)
评论(0)
推荐(0)