C++ server:linux, protoc -I=./ --cpp_out=./ Infor.protoJava client:包含protobuf-java-2.5.0.jar包, protoc.exe --java_out=./ Infor.protoInfor.proto文件: 1 me...
分类:
编程语言 时间:
2015-06-28 22:46:30
阅读次数:
731
using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.Services.Description;using System.Web.Services.Proto...
分类:
Web程序 时间:
2015-06-26 00:11:38
阅读次数:
221
理解原型
原型是一个对象,其他对象可以通过它实现属性继承。任何一个对象都可以成为继承,所有对象在默认的情况下都有一个原型,因为原型本身也是对象,所以每个原型自身又有一个原型。任何一个对象都有一个prototype的属性,记为:__proto__。每当我们定义一个对象,其__proto__属性就指向了其prototype。示例如下:
var foo = {
x: 10,
y: 20
};...
分类:
编程语言 时间:
2015-06-24 22:40:17
阅读次数:
186
1、下载地址:https://code.google.com/p/protobuf/downloads/list安装 ./configure && make && make install2、试执行 protoc 命令,如果提示链接库错误,则执行 ldconfig3、编译 .proto 文件成 C+...
分类:
其他好文 时间:
2015-06-24 15:55:44
阅读次数:
126
Fortran函数的调用标准在编译时使用iface声明,如iface:default,表示采用的是default标准。
fortran的调用标准有
[1] default: Tells the compiler to use the default calling conventions.
[2] cref: Tells the compiler to use cal...
分类:
其他好文 时间:
2015-06-23 11:54:58
阅读次数:
155
syntax="proto2" #语法格式
package tutorial; #包
#option:可赋值非必须赋值 java_package:java包名
option java_package = "com.example.tutorial";
#java类名,生成com.example.tutorial.AddressBookProtos ...
分类:
其他好文 时间:
2015-06-16 19:38:52
阅读次数:
152
main.cpp#include "Prototype.h"#include using namespace std;int main(int argc, char *argv[]) { Prototype *p = new ConcreatePrototype(); Proto...
分类:
其他好文 时间:
2015-06-14 19:59:31
阅读次数:
128
每一个引用类型的实例中,都有一个指针,指向其原型对象。这个指针在非IE浏览器里通过__proto__表示,而在IE里不提供。看如下代码:obj = {};obj.__proto__.toString = function() { return "__proto__"; }var ceshi ...
分类:
其他好文 时间:
2015-06-14 10:50:03
阅读次数:
135
在trunk目录下执行
mkdir -p files/etc/config
然后在 config 目录下新建network文件写入如下内容config interface 'loopback'
option ifname 'lo'
option proto 'static'
option ipaddr '127.0.0.1'
option netmask '255.0.0.0'
co...
分类:
其他好文 时间:
2015-06-12 14:56:47
阅读次数:
209
本文的例子代码在: https://github.com/grpc/grpc-go/tree/master/examples/route_guide 功能就类似目前LBS一样,在每个位置上报一些文字信息, 上报方式有多种。 在 .proto 文件中定义服务 在 .proto 文件中定义一个服务很简单...
分类:
其他好文 时间:
2015-06-11 18:46:59
阅读次数:
367