- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试创建自己的小型 AVR 库。我想在代码中使用伪 OOP,目前我将“类”定义为结构。我正在考虑是否可以实现类似“this”关键字的东西。我想在分配给作为结构成员的函数指针的函数中获取结构对象。
我的代码:
#define __class__ struct
#define __inner_object__ struct
#define ALIAS(cls, stc) typedef __class__ cls stc
typedef uint8_t reg8_t;
#define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
#define container_of(ptr, type, member) ({ \
const typeof( ((type *)0)->member ) *__mptr = (ptr); \
(type *)( (char *)__mptr - offsetof(type,member) );})
typedef enum {
PIN_DIR_INPUT = 0,
PIN_DIR_OUTPUT = 1
} pin_direction_t;
typedef struct {
const reg8_t m_pin;
const reg8_t m_ddr;
const reg8_t m_port;
const u1 m_bit;
void (*setDirection)(pin_direction_t);
} pin_t;
void __setDirection(pin_direction_t direction)
{
// how to get struct object here?
pin_t* pin = container_of(__setDirection, pin_t, setDirection);
//uint8_t reg = reg_read(pin->m_ddr);
//if (direction == PIN_DIR_OUTPUT)
//reg_write(pin->m_ddr, reg | (1uL << pin->m_bit));
//else
//reg_write(pin->m_ddr, reg & ~(1uL << pin->m_bit));
}
__class__ at_mega8
{
__inner_object__
{
const reg8_t REG_PIND;
const reg8_t REG_DDRD;
const reg8_t REG_PORTD;
__inner_object__
{
const pin_t PIN_D7;
const pin_t PIN_D6;
const pin_t PIN_D5;
const pin_t PIN_D4;
const pin_t PIN_D3;
const pin_t PIN_D2;
const pin_t PIN_D1;
const pin_t PIN_D0;
} Pins;
} PortD;
__inner_object__
{
const reg8_t REG_PINC;
const reg8_t REG_DDRC;
const reg8_t REG_PORTC;
__inner_object__
{
const pin_t PIN_C6;
const pin_t PIN_C5;
const pin_t PIN_C4;
const pin_t PIN_C3;
const pin_t PIN_C2;
const pin_t PIN_C1;
const pin_t PIN_C0;
} Pins;
} PortC;
__inner_object__
{
const reg8_t REG_PINB;
const reg8_t REG_DDRB;
const reg8_t REG_PORTB;
__inner_object__
{
const pin_t PIN_B7;
const pin_t PIN_B6;
const pin_t PIN_B5;
const pin_t PIN_B4;
const pin_t PIN_B3;
const pin_t PIN_B2;
const pin_t PIN_B1;
const pin_t PIN_B0;
} Pins;
} PortB;
};
ALIAS(at_mega8, at_mega8_t);
#define M8_PIND 0x10
#define M8_DDRD 0x11
#define M8_PORTD 0x12
#define M8_PINC 0x13
#define M8_DDRC 0x14
#define M8_PORTC 0x15
#define M8_PINB 0x16
#define M8_DDRB 0x17
#define M8_PORTB 0x18
const at_mega8_t AtMega8 = {
{
M8_PIND, M8_DDRD, M8_PORTD,
{
{ .m_bit = 7, .m_pin = M8_PIND, .m_ddr = M8_DDRD, .m_port = M8_PORTD, .setDirection = __setDirection },
{ .m_bit = 6, .m_pin = M8_PIND, .m_ddr = M8_DDRD, .m_port = M8_PORTD, .setDirection = __setDirection },
{ .m_bit = 5, .m_pin = M8_PIND, .m_ddr = M8_DDRD, .m_port = M8_PORTD, .setDirection = __setDirection },
{ .m_bit = 4, .m_pin = M8_PIND, .m_ddr = M8_DDRD, .m_port = M8_PORTD, .setDirection = __setDirection },
{ .m_bit = 3, .m_pin = M8_PIND, .m_ddr = M8_DDRD, .m_port = M8_PORTD, .setDirection = __setDirection },
{ .m_bit = 2, .m_pin = M8_PIND, .m_ddr = M8_DDRD, .m_port = M8_PORTD, .setDirection = __setDirection },
{ .m_bit = 1, .m_pin = M8_PIND, .m_ddr = M8_DDRD, .m_port = M8_PORTD, .setDirection = __setDirection },
{ .m_bit = 0, .m_pin = M8_PIND, .m_ddr = M8_DDRD, .m_port = M8_PORTD, .setDirection = __setDirection },
}
},
{
M8_PINC, M8_DDRC, M8_PORTC,
{
{ .m_bit = 6, .m_pin = M8_PINC, .m_ddr = M8_DDRC, .m_port = M8_PORTC, .setDirection = __setDirection },
{ .m_bit = 5, .m_pin = M8_PINC, .m_ddr = M8_DDRC, .m_port = M8_PORTC, .setDirection = __setDirection },
{ .m_bit = 4, .m_pin = M8_PINC, .m_ddr = M8_DDRC, .m_port = M8_PORTC, .setDirection = __setDirection },
{ .m_bit = 3, .m_pin = M8_PINC, .m_ddr = M8_DDRC, .m_port = M8_PORTC, .setDirection = __setDirection },
{ .m_bit = 2, .m_pin = M8_PINC, .m_ddr = M8_DDRC, .m_port = M8_PORTC, .setDirection = __setDirection },
{ .m_bit = 1, .m_pin = M8_PINC, .m_ddr = M8_DDRC, .m_port = M8_PORTC, .setDirection = __setDirection },
{ .m_bit = 0, .m_pin = M8_PINC, .m_ddr = M8_DDRC, .m_port = M8_PORTC, .setDirection = __setDirection },
}
},
{
M8_PINB, M8_DDRB, M8_PORTB,
{
{ .m_bit = 7, .m_pin = M8_PINB, .m_ddr = M8_DDRB, .m_port = M8_PORTB, .setDirection = __setDirection },
{ .m_bit = 6, .m_pin = M8_PINB, .m_ddr = M8_DDRB, .m_port = M8_PORTB, .setDirection = __setDirection },
{ .m_bit = 5, .m_pin = M8_PINB, .m_ddr = M8_DDRB, .m_port = M8_PORTB, .setDirection = __setDirection },
{ .m_bit = 4, .m_pin = M8_PINB, .m_ddr = M8_DDRB, .m_port = M8_PORTB, .setDirection = __setDirection },
{ .m_bit = 3, .m_pin = M8_PINB, .m_ddr = M8_DDRB, .m_port = M8_PORTB, .setDirection = __setDirection },
{ .m_bit = 2, .m_pin = M8_PINB, .m_ddr = M8_DDRB, .m_port = M8_PORTB, .setDirection = __setDirection },
{ .m_bit = 1, .m_pin = M8_PINB, .m_ddr = M8_DDRB, .m_port = M8_PORTB, .setDirection = __setDirection },
{ .m_bit = 0, .m_pin = M8_PINB, .m_ddr = M8_DDRB, .m_port = M8_PORTB, .setDirection = __setDirection },
}
},
};
我可以在下面的例子中使用这段代码:
hd44780.pinout.pinRS = &AtMega8.PortB.Pins.PIN_B1;
hd44780.init();
// and somewhere else in hd44780:
// rsPin.setDirection(PIN_DIR_OUTPUT);
我知道有 container_of
宏允许通过其成员获取容器对象。但是当我尝试使用这个宏时,出现了错误:
error: dereferencing pointer to incomplete type
此错误指向 container_of
宏定义。
那么,我有两个问题。是否有可能在 avr-gcc 上的分配函数中获取结构对象?如果不是,是否可以在 gcc (windows) 上执行此操作?当然,我可以将结构对象作为参数传递,但这会很难看
最佳答案
简短的回答,不 - 要用 container_of
做你想做的事,你需要特定对象中函数指针的地址,而不是它指向的函数的地址,并得到您需要某种指向结构或传递给函数的成员之一的指针。
如果您查看 C++ 等在幕后所做的事情,它基本上也是将指针传递给结构。你只是看不到它的发生,因为语言对你隐藏了它。必须以某种方式告知函数您希望它与哪个对象一起工作这一事实是无法解决的 - 它无法通过魔法知道这一点。
关于c - (伪)C 中的 OOP 从其函数指针获取结构对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35374719/
我目前正在尝试基于哈希表构建字典。逻辑是:有一个名为 HashTable 的结构,其中包含以下内容: HashFunc HashFunc; PrintFunc PrintEntry; CompareF
如果我有一个指向结构/对象的指针,并且该结构/对象包含另外两个指向其他对象的指针,并且我想删除“包含这两个指针的对象而不破坏它所持有的指针”——我该怎么做这样做吗? 指向对象 A 的指针(包含指向对象
像这样的代码 package main import "fmt" type Hello struct { ID int Raw string } type World []*Hell
我有一个采用以下格式的 CSV: Module, Topic, Sub-topic 它需要能够导入到具有以下格式的 MySQL 数据库中: CREATE TABLE `modules` ( `id
通常我使用类似的东西 copy((uint8_t*)&POD, (uint8_t*)(&POD + 1 ), back_inserter(rawData)); copy((uint8_t*)&PODV
错误 : 联合只能在具有兼容列类型的表上执行。 结构(层:字符串,skyward_number:字符串,skyward_points:字符串)<> 结构(skyward_number:字符串,层:字符
我有一个指向结构的指针数组,我正在尝试使用它们进行 while 循环。我对如何准确初始化它并不完全有信心,但我一直这样做: Entry *newEntry = malloc(sizeof(Entry)
我正在学习 C,我的问题可能很愚蠢,但我很困惑。在这样的函数中: int afunction(somevariables) { if (someconditions)
我现在正在做一项编程作业,我并没有真正完全掌握链接,因为我们还没有涉及它。但是我觉得我需要它来做我想做的事情,因为数组还不够 我创建了一个结构,如下 struct node { float coef;
给定以下代码片段: #include #include #define MAX_SIZE 15 typedef struct{ int touchdowns; int intercepti
struct contact list[3]; int checknullarray() { for(int x=0;x<10;x++) { if(strlen(con
这个问题在这里已经有了答案: 关闭 11 年前。 Possible Duplicate: Empty “for” loop in Facebook ajax what does AJAX call
我刚刚在反射器中浏览了一个文件,并在结构构造函数中看到了这个: this = new Binder.SyntaxNodeOrToken(); 我以前从未见过该术语。有人能解释一下这个赋值在 C# 中的
我经常使用字符串常量,例如: DICT_KEY1 = 'DICT_KEY1' DICT_KEY2 = 'DICT_KEY2' ... 很多时候我不介意实际的文字是什么,只要它们是独一无二的并且对人类读
我是 C 的新手,我不明白为什么下面的代码不起作用: typedef struct{ uint8_t a; uint8_t* b; } test_struct; test_struct
您能否制作一个行为类似于内置类之一的结构,您可以在其中直接分配值而无需调用属性? 前任: RoundedDouble count; count = 5; 而不是使用 RoundedDouble cou
这是我的代码: #include typedef struct { const char *description; float value; int age; } swag
在创建嵌套列表时,我认为 R 具有对列表元素有用的命名结构。我有一个列表列表,并希望应用包含在任何列表中的每个向量的函数。 lapply这样做但随后剥离了列表的命名结构。我该怎么办 lapply嵌套列
我正在做一个用于学习目的的个人组织者,我从来没有使用过 XML,所以我不确定我的解决方案是否是最好的。这是我附带的 XML 文件的基本结构:
我是新来的 nosql概念,所以当我开始学习时 PouchDB ,我找到了这个转换表。我的困惑是,如何PouchDB如果可以说我有多个表,是否意味着我需要创建多个数据库?因为根据我在 pouchdb
我是一名优秀的程序员,十分优秀!