概述
CTemplate是Google开源的一个使用简单但功能很强大的C++模板库,本文简单介绍其的使用。
入门示例
模板库一般用来隔离数据和展现,这样可以减少数据和展现之间的耦合,使其可以相互独立变化,减少耦合,增加代码的复用,下面我们先看一个简单的例子,模板如下:
Hello {
{NAME}},
You have just won ${
{VALUE}}!
{
{#IN_CA}}Well, ${
{TAXED_VALUE}}, after taxes.{
{/IN_CA}}
对应的C++代码是:
#include <cstdlib>
#include <iostream>
#include <string>
#include <ctemplate/template.h>
int main() {
ctemplate::TemplateDictionary dict("example");
int winnings = rand() % 100000;
dict["NAME"] = "John Smith";
dict["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 ins
最后
以上就是忧心香氛为你收集整理的Google开源C++模板库ctemplate完整使用示例的全部内容,希望文章能够帮你解决Google开源C++模板库ctemplate完整使用示例所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复