- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我从these知道questions如果我在头文件中声明一个静态常量变量:
Foo
{
public:
static const int BAR = 1234;
...
};
我还必须在源文件中定义它:
const int Foo::BAR;
但是,如果该变量没有在程序中使用,gcc 会很高兴地忽略这个要求。此外,如果启用了优化,gcc 似乎会愉快地掩盖一些简单的用途(例如,通过 const 引用传递给 std::min)。
如果我忘记提供定义,即使我的源代码中没有使用该变量,是否有办法强制 gcc 发出警告?如果上面的 Foo
是共享库的一部分并且没有提供 Foo::BAR
的定义,用户将无法传递 Foo:BAR
通过引用或获取指向它的指针,但我作为图书馆作者没有得到任何迹象表明这是一个问题。
更一般地说,有没有办法强制共享库中的所有声明都有相应的定义?或者这是否会在优化机会方面牺牲太多而不值得?
最佳答案
你用语言标签标记了这个问题,所以......代码在技术上是合法的,因为标准只需要在最终程序中使用时的定义。编译器不知道您是否要链接定义该符号的另一个翻译单元,因此即使生成警告也很棘手,并且可能会产生误报。
检查的简单方法是正确地对您的库接口(interface)进行单元测试(如评论中所建议的那样),然后您就会在链接单元测试时确定地知道。
关于c++ - GCC 警告已声明但 undefined variable ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34602718/
我只是有一个更琐碎的问题。 为什么undefined == undefined 返回true,而undefined >= undefined 为false? undefined 等于 undefine
用PHP 7.2编写套接字服务器。根据Firefox 60中的“网络”选项卡,服务器的一些HTTP响应的第一行随机变为undefined undefined undefined。因此,我尝试记录套接字
在 JavaScript 中这是真的: undefined == undefined 但这是错误的: undefined <= undefined 起初我以为<=运算符包含第一个,但我猜它试图将其转换
在回答这个问题 (Difference between [Object, Object] and Array(2)) 时,我在 JavaScript 数组中遇到了一些我以前不知道的东西(具有讽刺意味的
来自https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Array/of , Note: thi
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
当我添加 到我的 PrimeFaces Mobile 页面,然后我在服务器日志中收到以下警告 WARNING: JSF1064: Unable to find or serve resource, u
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我是一名优秀的程序员,十分优秀!