constants

constants

文章 0 浏览 3

PHP 数组键在常量中

我有一个希望很快的问题。 我已将数组放置在常量中,但是当我添加数组键时,它会崩溃。我的代码如下。 &lt?php define("my_const_arr", serialize(arr…

是伱的 2024-10-31 21:44:08 1 0

const boost::array;或 boost::array

这两者有什么区别?当您需要固定大小的常量值数组时,您会更喜欢哪一个? const boost::array&ltint, 2&gt x = {0, 1} boost::array&ltconst int, 2&g…

ぺ禁宫浮华殁 2024-10-31 20:47:36 1 0

具有 const 和非常量成员的联合体?

这似乎是未定义的行为 union A { int const x float y } A a = { 0 } a.y = 1 规范说 在具有静态、线程或自动存储持续时间的 const 对象占用的存储位…

我还不会笑 2024-10-31 18:51:57 0 0

了解如何正确治疗c++类常量

考虑以下事项: namespace MyNamespace{ class MyClass { public: // Public area private: // Private area protected: // Protected area } /* Clas…

谁与争疯 2024-10-31 16:34:10 1 0

帮助未定义和多字符成为常量

我不明白我做错了什么。我是新手,无法弄清楚为什么修剪类型未定义,并且“乙烯基内饰”有太多字符而无法成为常量。请帮助 #include "stdafx.h" #incl…

暮光沉寂 2024-10-31 12:03:23 1 0

C++使用 shared_ptr 到 const T 的模板实例化

假设我有一个类 template &lttypename T&gt class A { public: template &lttypename V&gt void f(std::tr1::shared_ptr&ltconst std::vector&ltV&gt …

旧人九事 2024-10-31 06:33:50 0 0

C++ - 插入运算符、const关键字导致编译错误

所以我正在构建一个类,为了简单起见,我将在这里简化它。 这会产生编译器错误:“错误:对象具有与成员函数不兼容的类型限定符。” 代码如下: ostre…

中二柚 2024-10-31 06:11:43 0 0

是 C++保证调用成员函数的某个常量?

如果我有以下内容: class A { int foo() const { j++ return i } int&amp foo() { return i } int i mutable int j } 那么显然类似 A a a.foo() = 5 …

机场等船 2024-10-31 04:59:27 1 0

在 C++ 中声明常量数组值

例如我有: int boo[8] boo[1] = boo[3] = boo[7] = 4 boo[0] = boo[2] = 7 boo[4] = boo[5] = boo[6] = 15 我应该如何将其输入为常量值?我看到类似…

自此以后,行同陌路 2024-10-31 03:54:20 0 0

将 public const 与字符串一起使用是否安全?

我听说这样做是一个坏主意: public const double Pi = 3 因为后来当我意识到我需要将其更改为 3.14 时,其他程序集将无法看到更改,直到它们也重新编…

提笔书几行 2024-10-31 03:11:46 0 0

具有所有 Windows 常量的 Visual Basic 结构

每次我在 VB 中执行一些最终使用 Windows API 调用的操作时,我总是不得不查找 Windows 常量的值。 有没有人有一个文件,其中包含定义所有 WIN-API 常…

离线来电— 2024-10-31 02:59:23 1 0

const、指针、typedef 和星号

可能的重复: const int* 和 const int* 之间有什么区别, const int * const, int const * 大家好, 我想知道当指针涉及到以下内容时,是否有人可以…

一袭白衣梦中忆 2024-10-30 23:09:30 0 0

Delphi 中的 const 函数

在我正在查看的 Delphi 代码中,我发现了以下几行: const function1: function(const S: String): String = SomeVariable1 function2: function(cons…

太阳哥哥 2024-10-30 20:56:51 1 0

Perl 常量定义在专用包中

我想为主 Perl 程序和其他包的所有常见声明设置一个专用包,而不是在每个标头中重复这些声明。我肯定弄错了,但无法弄清楚其背后的理由: 让我们假设…

终难愈 2024-10-30 16:26:13 1 0

如何将 switch 与外部常量一起使用?

一些 code.cpp 文件包含 extern const int v1 extern const int v2 extern const int v3 extern const int v4 int _tmain(int argc, _TCHAR* argv[]) …

鹤仙姿 2024-10-30 14:30:57 1 0
更多

推荐作者

lorenzathorton8

文章 0 评论 0

Zero

文章 0 评论 0

萧瑟寒风

文章 0 评论 0

mylayout

文章 0 评论 0

tkewei

文章 0 评论 0

17818769742

文章 0 评论 0

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