浅解 go 语言的 interface(许的博客)
我写了一个 go interface 相关的代码转换为 C 代码的样例。也许有助于大家理解 go 的 interface。不过请注意一点,这里没有完整解析 go 语言 interface 的所有细节。
package main
import "fmt"
// -------------------------------------------------------------
type IReadWriter interface {
Read(buf *byte, cb int) int
Write(buf *byte, cb int) int
}
// -------------------------------------------------------------
type A struct {
a int
}
func NewA(params int) *A {
fmt.Println("NewA:", params);
return &A{params}
}
func (this *A) Read(buf *byte, cb int) int {
fmt.Println("A_Read:", this.a)
return cb
}
func (this *A) Write(buf *byte, cb int) int {
fmt.Println("A_Write:", this.a)
return cb
}
// -------------------------------------------------------------
type B struct {
A
}
func NewB(params int) *B {
fmt.Println("NewB:", params);
return &B{A{params}}
}
func (this *B) Write(buf *byte, cb int) int {
fmt.Println("B_Write:", this.a)
return cb
}
func (this *B) Foo() {
fmt.Println("B_Foo:", this.a)
}
// -------------------------------------------------------------
func main() {
var p IReadWriter = NewB(8)
p.Read(nil, 10)
p.Write(nil, 10)
}
// -------------------------------------------------------------
#include <stdio.h>
#include <stdlib.h>
// -------------------------------------------------------------
typedef struct _TypeInfo {
// 用于运行时取得类型信息, 比如反射机制
} TypeInfo;
typedef struct _InterfaceInfo {
// 用于运行时取得interface信息
} InterfaceInfo;
// -------------------------------------------------------------
typedef struct _IReadWriterTbl {
InterfaceInfo* inter;
TypeInfo* type;
int (*Read)(void* this, char* buf, int cb);
int (*Write)(void* this, char* buf, int cb);
} IReadWriterTbl;
typedef struct _IReadWriter {
IReadWriterTbl* tab;
void* data;
} IReadWriter;
InterfaceInfo g_InterfaceInfo_IReadWriter = {
// ...
};
// -------------------------------------------------------------
typedef struct _A {
int a;
} A;
int A_Read(A* this, char* buf, int cb) {
printf("A_Read: %d\n", this->a);
return cb;
}
int A_Write(A* this, char* buf, int cb) {
printf("A_Write: %d\n", this->a);
return cb;
}
TypeInfo g_TypeInfo_A = {
// ...
};
A* NewA(int params) {
printf("NewA: %d\n", params);
A* this = (A*)malloc(sizeof(A));
this->a = params;
return this;
}
// -------------------------------------------------------------
typedef struct _B {
A base;
} B;
int B_Write(B* this, char* buf, int cb) {
printf("B_Write: %d\n", this->base.a);
return cb;
}
void B_Foo(B* this) {
printf("B_Foo: %d\n", this->base.a);
}
TypeInfo g_TypeInfo_B = {
// ...
};
B* NewB(int params) {
printf("NewB: %d\n", params);
B* this = (B*)malloc(sizeof(B));
this->base.a = params;
return this;
}
// -------------------------------------------------------------
IReadWriterTbl g_Itbl_IReadWriter_B = {
&g_InterfaceInfo_IReadWriter,
&g_TypeInfo_B,
(int (*)(void* this, char* buf, int cb))A_Read,
(int (*)(void* this, char* buf, int cb))B_Write
};
int main() {
B* unnamed = NewB(8);
IReadWriter p = {
&g_Itbl_IReadWriter_B,
unnamed
};
p.tab->Read(p.data, NULL, 10);
p.tab->Write(p.data, NULL, 10);
return 0;
}
// ------------------------------------------------------------- http://blog.csdn.net/xushiweizh/article/details/7034346
浅解 go 语言的 interface(许的博客)的更多相关文章
- iOS中 视频直播功能-流媒体的使用(详解)韩俊强的CSDN博客
上一篇博客:(流媒体实现视频播放和下载功能):http://blog.csdn.net/qq_31810357/article/details/50574914 最近视频直播功能比较火,处于需求,研究 ...
- 2018上C语言程序设计(高级)博客作业样例
要求一(20分) 完成PTA中题目集名为<usth-C语言高级-第1次作业>中的所有题目. 要求二 PTA作业的总结(20分+30分) 将PTA第1次作业作业中以下2道题的解题思路按照规定 ...
- WebConfig配置文件详解(转载自逆心的博客)
<?xml version="1.0"?> <!--注意: 除了手动编辑此文件以外,您还可以使用 Web 管理工具来配置应用程序的设置.可以使用 Visual S ...
- iOS中 支付宝钱包详解/第三方支付 韩俊强的博客
每日更新关注:http://weibo.com/hanjunqiang 新浪微博! iOS开发者交流QQ群: 446310206 一.在app中成功完成支付宝支付的过程 1.申请支付宝钱包.参考网址 ...
- 【转】log4j.properties 详解与配置步骤 - edward0830ly的专栏 - 博客频道 - CSDN.NET
一.log4j.properties 的使用详解 1.输出级别的种类 ERROR.WARN.INFO.DEBUGERROR 为严重错误 主要是程序的错误WARN 为一般警告,比如session丢失IN ...
- javascript工具--控制台详解(转自 阮一峰博客)
大神这篇博客是写在2011年,主要介绍 “Firefox” 浏览器插件 “Firebug” 的操作,如今主流浏览器对控制台都已经提供了很好的支持.我自己用的最多是谷歌的 “chrome” 浏览器,下面 ...
- 微博爬虫“免登录”技巧详解及 Java 实现(业余草的博客)
一.微博一定要登录才能抓取? 目前,对于微博的爬虫,大部分是基于模拟微博账号登录的方式实现的,这种方式如果真的运营起来,实际上是一件非常头疼痛苦的事,你可能每天都过得提心吊胆,生怕新浪爸爸把你的那些账 ...
- C语言I博客作业02
这个作业属于那个课程 C语言程序设计I 这个作业要求在哪 https://edu.cnblogs.com/campus/zswxy/CST2019-3/homework/8656 我在这个课程的目标 ...
- c语言1博客作业02
c语言1博客作业02 这个作业属于哪个课程 C语言程序设计 这个作业的要求在哪 [作业要求](https://edu.cnblogs.com/campus/zswxy/SE2019-2/homewor ...
随机推荐
- 介绍配置管理工具SVN的使用
配置管理CM(Configuration Mangerment) 一.配置管理工具SVN的介绍 ---Subversion ---是一个开放源代码的版本控制系统 ---时下流行的SVN和GIT 每天开 ...
- js数组增删
1.shift() 2.pop() 3.push() 4.unshift() 5.splice(start,num,string...)
- python ASCII编码集
- 前端web设置div宽高一样
<div class="constant-width-to-height-ratio"></div> .constant-width-to-height-r ...
- Atcoder Tenka1 Programmer Contest D: IntegerotS 【思维题,位运算】
http://tenka1-2017.contest.atcoder.jp/tasks/tenka1_2017_d 给定N,K和A1...AN,B1...BN,选取若干个Ai使它们的或运算值小于等于K ...
- python 类与类之间的关系. 特殊成员
一.类与类之间的关系 1.依赖关系 在方法的参数位置把另一个类的对象作为参数进行传递 class Person: def play(self, tools): # 通过参数的传递把另一个类的对象传递进 ...
- C++大体概况 标签: c++总结 2015-01-31 20:41 792人阅读 评论(15) 收藏
今年又一次报名了二级的C++考试,现在再来把C++总结一下,也不能算是总结,大体提炼了一下需要注意的地方,考试之前打算把这些东西好好看一看,今年一定要过啊! 前两天才知道,unix是用C语言编写的,这 ...
- [ZJOI2007] 小Q的矩阵游戏 (模板—Dinic)
B. 矩阵游戏 题目描述 小Q是一个非常聪明的孩子,除了国际象棋,他还很喜欢玩一个电脑益智游戏——矩阵游戏.矩阵游戏在一个N*N黑白方阵进行(如同国际象棋一般,只是颜色是随意的).每次可以对该矩阵进行 ...
- hdu 3329 The Flood (Flood Fill + MFSet)
Problem - 3329 用pfs,将淹没时间调整回来,然后用并查集,时间倒序插入点. 代码如下: #include <iostream> #include <algorithm ...
- iptables 通讯端口转接(Port Forwarding)
是一种特殊的DNAT操作,其作用是让一部电脑(通常是防火牆)担任其它电脑的代理伺服器(proxy).防火牆接收外界网络接传给它自己的包,然后改写包的目的地位址或目的端口,使其像是要送到內部网路其它电脑 ...