gpt4 book ai didi

C++ CodeBlocks 中类似 PHP 的静态方法

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:48:12 24 4
gpt4 key购买 nike

我在 C++ 中有简单的类声明

class A {
static void foo(void){
printf("Bar\n");
}
};

在 Visual Studio 2013 中,我可以通过 A::foo() 使用它,但在 CodeBlocks 中,我得到了 undefined reference 错误。我如何在 CodeBlocks 中创建像 PHP 中那样的抽象方法(我不需要创建对象来调用此方法)?

我的代码(在 Visual Studio 2013 中工作):https://github.com/ventaquil/Blake-512

最佳答案

你可以像这个例子那样尝试:

示例.h

class Sample
{
static int boo;
static void init()
{
boo = 1;
}
}

示例.cpp

#include "Sample.h"
int Sample::boo;

用法:

#include "Sample.h"
cout << Sample::boo;

关于C++ CodeBlocks 中类似 PHP 的静态方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34203080/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com