當前位置: 首頁>>代碼示例>>C++>>正文


C++ string_t::str方法代碼示例

本文整理匯總了C++中string_t::str方法的典型用法代碼示例。如果您正苦於以下問題:C++ string_t::str方法的具體用法?C++ string_t::str怎麽用?C++ string_t::str使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在string_t的用法示例。


在下文中一共展示了string_t::str方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C++代碼示例。

示例1: set

void value_t::set(value_id_t value_id, const string_t& value) {
    pi_t::pro_t::item_t id_item(pi_t::pro_t::uint_t(value_id), NULL);
    const str_t& value_str = value.str();
    pi_t::pro_t::item_t value_item(value_str, &id_item);
    pi_t::pro_t pro(&value_item);
    value_ = pi_ext_t::__build(pro);
}
開發者ID:skywalker239,項目名稱:lightning,代碼行數:7,代碼來源:value.C

示例2: run

void phantom_t::run(string_t const &conf_name) {
	config_t config;
	string_t const conf_str = string_file(conf_name.str());

	try {
		in_t::ptr_t ptr = conf_str;
		config::binding_t<config_t>::parse(ptr, config);
		if(ptr)
			config::error(ptr, "unexpected '}'");
	}
	catch(config::exception_t const &ex) {
		config::report_position(conf_name, conf_str, ex.ptr);
		return;
	}

	signal(SIGPIPE, SIG_IGN);
	signal(SIGHUP, SIG_IGN);

	sigset_t sigset;
	sigemptyset(&sigset);
	sigaddset(&sigset, SIGINT);
	sigaddset(&sigset, SIGTERM);
	sigaddset(&sigset, SIGALRM);
	sigaddset(&sigset, SIGQUIT);
	sigprocmask(SIG_BLOCK, &sigset, NULL);

	log::handler_default_t log_handler(STRING("phantom"), config.logger);

	log_info("Start");

	try {
		int stat_fd;

		if(config.stat.filename) {
			string_t filename_z = ({
				string_t::ctor_t ctor(config.stat.filename.size() + 1);
				ctor(config.stat.filename)('\0');
				(string_t)ctor;
			});

			stat_fd = ::open(filename_z.ptr(), O_WRONLY | O_CREAT | O_APPEND, 0644);
			if(stat_fd < 0)
				throw exception_sys_t(
					log::error, errno, "open (%s): %m", filename_z.ptr()
				);
		}
開發者ID:euroelessar,項目名稱:phantom,代碼行數:46,代碼來源:phantom.C

示例3:

void out_t::helper_t<string_t>::print(
    out_t &out, string_t const &string, char const *fmt
) {
    out.print(string.str(), fmt);
}
開發者ID:kmeaw,項目名稱:phantom,代碼行數:5,代碼來源:string.C


注:本文中的string_t::str方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。