2015年7月24日

c++ 获取本地ip地址

摘要: 最终版本:采用指针传参数,不使用别名形式。#include #include //gethostbyname#include //ntohl#include using namespace std;int get_local_ip(int *ip) { char hostname[12... 阅读全文

posted @ 2015-07-24 16:04 雨渐渐 阅读(24493) 评论(0) 推荐(1) 编辑

c++ 如何实现,readonly

摘要: 需求:我要实现一个常量字段,只能赋值一次,赋值后不容许更改。类似于c#的readonly或者java final#include class A{public:A(int machine_id):_machine_id(machine_id) { std::cout << "构造函数" << std... 阅读全文

posted @ 2015-07-24 11:58 雨渐渐 阅读(1063) 评论(0) 推荐(0) 编辑

c++ 语法

摘要: 百度知道手把手的字符串操作啊http://jingyan.baidu.com/article/20b68a8854f919796dec6265.html 阅读全文

posted @ 2015-07-24 09:58 雨渐渐 阅读(103) 评论(0) 推荐(0) 编辑

导航