woaidongmao

文章均收录自他人博客,但不喜标题前加-[转贴],因其丑陋,见谅!~
随笔 - 1469, 文章 - 0, 评论 - 661, 引用 - 0
数据加载中……

简介:google ctemplate:简单易用的文字模板

CTemplate 是一个简单实用、功能强大的文字模板(template language),适用于使用C++语言开发的应用程序。其解决的主要问题是将文字表达和逻辑分离开来:文字模板解决如何用合适的文字和形式来表达的问题,而逻辑问题则由文字模板的调用者在源代码中完成。

下面有一个简单的例子让我们初步了解其概念,介绍了如何在你的程序中应用CTemplate

首先创建一个模板文件,命名为example.tpl,以文本方式输入以下内容:

  {{ NAME }}你好 ,
恭喜你中奖了,奖金总额是:$ {{ VALUE }}!
{{ #IN_CA}}您应缴纳的税金总额为: ${{TAXED_VALUE}} {{/IN_CA}}

 C++程序中我们可以这样调用:

#include <stdlib.h>
#include <string>
#include <iostream> 
#include <google/template.h> 
int main ( int argc , char ** argv ) {
  google
:: TemplateDictionary dict ( "example" );
  dict
. SetValue ( "NAME" , "John Smith" );
 
int winnings = rand () % 100000 ;
  dict
. SetIntValue ( "VALUE" , winnings );
  dict
. SetFormattedValue ( "TAXED_VALUE" , "%.2f" , winnings * 0.83 );
 
// For now, assume everyone lives in CA.
 
// (Try running the program with a 0 here instead!)
 
if ( 1 ) {
    dict
. ShowSection ( "IN_CA" );
 
}
  google
:: Template * tpl = google :: Template :: GetTemplate ( "example.tpl" ,
                                                        google
:: DO_NOT_STRIP );
  std
:: string output ;
  tpl
-> Expand (& output , & dict );
  std
:: cout << output ;
 
return 0 ;
}

如果你感兴趣的话可以参考完整的帮助文档:

 

posted on 2010-03-04 12:15 肥仔 阅读(827) 评论(0)  编辑 收藏 引用 所属分类: 模板引擎


只有注册用户登录后才能发表评论。
网站导航: 博客园   IT新闻   BlogJava   知识库   博问   管理