- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
在 C++11 中,声明一个仍然是不完整类型的类的 vector 肯定是无效的,对吗?我以为我只能使用不完整的类型作为指针、引用、返回类型或参数类型。搜索 (1)对于“不完整类型的 vector ”向我建议不完整类型的容器应该是一个错误(我使用的是 g++ 版本 4.8.1。)。然而,以下代码在我的系统上编译得很好:
#ifndef SCREEN
#define SCREEN
#include <string>
using namespace std;
class Screen;
class Window_mgr{
public:
typedef vector<Screen>::size_type screenindex;
void clear(screenindex);
private:
vector<Screen> screens;
};
class Screen{
friend void Window_mgr::clear(screenindex);
public:
typedef string::size_type pos;
Screen() = default;
Screen(pos ht, pos wt): height(ht), width(wt), contents(ht*wt, ' ') { }
Screen(pos ht, pos wt, char c): height(ht), width(wt), contents(ht*wt, c) { }
private:
pos height = 0, width = 0;
pos cursor = 0;
string contents;
};
inline void Window_mgr::clear(screenindex i){
Screen& s = screens[i];
s.contents = string(s.height*s.width, ' ');
}
#endif // SCREEN
尽管 Window_mgr 声明了一个 Screens vector ,它仍然是一个不完整的类型。我的示例中的这些类实际上是基于 C++ Primer 的第 7.3 章的。一个问题让我定义我自己版本的 Screen 和 Window_mgr,其中成员函数 clear 是 Window_mgr 的成员和 Screen 的友元。除了 Window_mgr 还意味着包含一个屏幕 vector 。
如果创建一个不完整类型的 vector 是无效的,我将如何使用前向声明来做到这一点?如果我在 Window_mgr 中有一个屏幕 vector ,那么它的类定义必须在已经定义了类 Screen 之后。除了Screen必须有Window_mgr的clear成员函数的友元声明,但是下面的重排是错误的,因为Screen在一个不完整的类型上使用了作用域操作符;
class Window_mgr;
class Screen{
friend void Window_mgr::clear(screenindex);
public:
typedef string::size_type pos;
Screen() = default;
Screen(pos ht, pos wt): height(ht), width(wt), contents(ht*wt, ' ') { }
Screen(pos ht, pos wt, char c): height(ht), width(wt), contents(ht*wt, c) { }
private:
pos height = 0, width = 0;
pos cursor = 0;
string contents;
};
class Window_mgr{
public:
typedef vector<Screen>::size_type screenindex;
void clear(screenindex);
private:
vector<Screen> screens;
};
inline void Window_mgr::clear(screenindex i){
Screen& s = screens[i];
s.contents = string(s.height*s.width, ' ');
}
我能想到的唯一方法是用类的友元声明替换成员函数友元声明
class Screen{
friend class Window_mgr;
// other stuff
}
但这不是我想要的问题。
最佳答案
标准容器目前不支持不完整的类型;比照。 Can standard container templates be instantiated with incomplete types? - 也就是说,实现可以选择支持不完整的类型作为扩展,但这会使您的代码不可移植。
论文n4371 Minimal incomplete type support for standard containers, revision 2已被纳入 C++ 标准的最新草案 (n4527),因此除非出现意外情况,否则 vector
、list
很可能会支持不完整的类型和 C++17 中的 forward_list
。
有一种方法可以满足“C++ Primer”中的要求,而不依赖于实现扩展或 C++17:
clear
是Window_mgr
的成员函数;Window_mgr::clear()
是Screen
的友元;Window_mgr
包含一个 Screen
vector :您可以使 Screen
成为 Window_mgr
的嵌套类:
class Window_mgr{
public:
typedef std::size_t screenindex;
void clear(screenindex);
class Screen{
friend void Window_mgr::clear(screenindex);
public:
// ...
};
// ...
private:
vector<Screen> screens;
};
即使在这里,我也不得不调整 screenindex
类型的定义以打破依赖循环。
关于c++ - 我可以使用 STL 容器管理不完整的类对象吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31858878/
我的一位教授给了我们一些考试练习题,其中一个问题类似于下面(伪代码): a.setColor(blue); b.setColor(red); a = b; b.setColor(purple); b
我似乎经常使用这个测试 if( object && object !== "null" && object !== "undefined" ){ doSomething(); } 在对象上,我
C# Object/object 是值类型还是引用类型? 我检查过它们可以保留引用,但是这个引用不能用于更改对象。 using System; class MyClass { public s
我在通过 AJAX 发送 json 时遇到问题。 var data = [{"name": "Will", "surname": "Smith", "age": "40"},{"name": "Wil
当我尝试访问我的 View 中的对象 {{result}} 时(我从 Express js 服务器发送该对象),它只显示 [object][object]有谁知道如何获取 JSON 格式的值吗? 这是
我有不同类型的数据(可能是字符串、整数......)。这是一个简单的例子: public static void main(String[] args) { before("one"); }
嗨,我是 json 和 javascript 的新手。 我在这个网站找到了使用json数据作为表格的方法。 我很好奇为什么当我尝试使用 json 数据作为表时,我得到 [Object,Object]
已关闭。此问题需要 debugging details 。目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and the
我听别人说 null == object 比 object == null check 例如: void m1(Object obj ) { if(null == obj) // Is thi
Match 对象 提供了对正则表达式匹配的只读属性的访问。 说明 Match 对象只能通过 RegExp 对象的 Execute 方法来创建,该方法实际上返回了 Match 对象的集合。所有的
Class 对象 使用 Class 语句创建的对象。提供了对类的各种事件的访问。 说明 不允许显式地将一个变量声明为 Class 类型。在 VBScript 的上下文中,“类对象”一词指的是用
Folder 对象 提供对文件夹所有属性的访问。 说明 以下代码举例说明如何获得 Folder 对象并查看它的属性: Function ShowDateCreated(f
File 对象 提供对文件的所有属性的访问。 说明 以下代码举例说明如何获得一个 File 对象并查看它的属性: Function ShowDateCreated(fil
Drive 对象 提供对磁盘驱动器或网络共享的属性的访问。 说明 以下代码举例说明如何使用 Drive 对象访问驱动器的属性: Function ShowFreeSpac
FileSystemObject 对象 提供对计算机文件系统的访问。 说明 以下代码举例说明如何使用 FileSystemObject 对象返回一个 TextStream 对象,此对象可以被读
我是 javascript OOP 的新手,我认为这是一个相对基本的问题,但我无法通过搜索网络找到任何帮助。我是否遗漏了什么,或者我只是以错误的方式解决了这个问题? 这是我的示例代码: functio
我可以很容易地创造出很多不同的对象。例如像这样: var myObject = { myFunction: function () { return ""; } };
function Person(fname, lname) { this.fname = fname, this.lname = lname, this.getName = function()
任何人都可以向我解释为什么下面的代码给出 (object, Object) 吗? (console.log(dope) 给出了它应该的内容,但在 JSON.stringify 和 JSON.parse
我正在尝试完成散点图 exercise来自免费代码营。然而,我现在只自己学习了 d3 几个小时,在遵循 lynda.com 的教程后,我一直在尝试确定如何在工具提示中显示特定数据。 This code
我是一名优秀的程序员,十分优秀!