如何在 C 中将 ENUM 作为函数参数传递

发布于 2024-10-11 05:40:57 字数 347 浏览 2 评论 0原文

我有一个枚举声明为:

typedef enum 
{
   NORMAL = 0,           
   EXTENDED              

} CyclicPrefixType_t;

CyclicPrefixType_t cpType;  

我需要一个将其作为参数的函数:

fun(CyclicPrefixType_t cpType);  

函数声明是:

void fun(CyclicPrefixType_t cpType);

我该如何修复它?我认为这是不正确的。

I have an enum declared as:

typedef enum 
{
   NORMAL = 0,           
   EXTENDED              

} CyclicPrefixType_t;

CyclicPrefixType_t cpType;  

I need a function that takes this as an argument:

fun(CyclicPrefixType_t cpType);  

The function declaration is:

void fun(CyclicPrefixType_t cpType);

How can I fix it? I don't think it is correct.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

新人笑 2024-10-18 05:40:57

这几乎就是您的操作方式:

#include <stdio.h>

typedef enum {
    NORMAL = 31414,
    EXTENDED
} CyclicPrefixType_t;

void func (CyclicPrefixType_t x) {
    printf ("%d\n", x);
}

int main (void) {
    CyclicPrefixType_t cpType = EXTENDED;
    func (cpType);
    return 0;
}

这会按预期输出 EXTENDED 的值(在本例中为 31415)。

That's pretty much exactly how you do it:

#include <stdio.h>

typedef enum {
    NORMAL = 31414,
    EXTENDED
} CyclicPrefixType_t;

void func (CyclicPrefixType_t x) {
    printf ("%d\n", x);
}

int main (void) {
    CyclicPrefixType_t cpType = EXTENDED;
    func (cpType);
    return 0;
}

This outputs the value of EXTENDED (31415 in this case) as expected.

小红帽 2024-10-18 05:40:57

下面的内容也有效,FWIW(这有点令人困惑......)

#include <stdio.h>

enum CyclicPrefixType_t {
    NORMAL = 31414,
    EXTENDED
};

void func (enum CyclicPrefixType_t x) {
    printf ("%d\n", x);
}

int main (void) {
    enum CyclicPrefixType_t cpType = EXTENDED;
    func (cpType);
    return 0;
}

显然它是一个遗留的 C 东西

The following also works, FWIW (which confuses slightly...)

#include <stdio.h>

enum CyclicPrefixType_t {
    NORMAL = 31414,
    EXTENDED
};

void func (enum CyclicPrefixType_t x) {
    printf ("%d\n", x);
}

int main (void) {
    enum CyclicPrefixType_t cpType = EXTENDED;
    func (cpType);
    return 0;
}

Apparently it's a legacy C thing.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文