在此处和互联网上搜索并没有让我看到 Delphi 的实时模板示例,该模板使用 getter / setter 生成属性并生成私有字段并执行复杂操作。(SHIFT + CTRL + C)
这可能吗?
在此处和互联网上搜索并没有让我看到 Delphi 的实时模板示例,该模板使用 getter / setter 生成属性并生成私有字段并执行复杂操作。(SHIFT + CTRL + C)
这可能吗?
可以修改前面提到的Delphi Live Templates页面上标题为“Read/write property”的示例以生成 getter/setter 方法而不是私有字段:
<?xml version="1.0" encoding="utf-8" ?>
<codetemplate xmlns="http://schemas.borland.com/Delphi/2005/codetemplates"
version="1.0.0">
<template name="prop" invoke="manual">
<description>
read write property for field
</description>
<author>
twm
</author>
<point name="ident">
<text>Name</text>
<hint>the name for the property</hint>
</point>
<point name="type">
<text>Integer</text>
<hint>the type for the property</hint>
</point>
<script language="Delphi" onenter="false" onleave="true">
InvokeClassCompletion;
</script>
<code language="Delphi" delimiter="|">
<![CDATA[property |ident|: |type| read Get|ident| write Set|ident|;
|end|]]>
</code>
</template>
</codetemplate>
但是,这不会生成私有字段。