- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我收到以下错误:
error C2440: 'type cast' : cannot convert from 'std::_Vector_iterator<_Ty,_Alloc>' to 'DWORD'
with
[
_Ty=LPCSTR ,
_Alloc=std::allocator<LPCSTR >
]
No user-defined-conversion operator available that can perform this conversion, or the operator cannot be called
我使用的是 Visual Studio 2005。这适用于较旧的 Visual Studio,但不适用于这个。这是导致错误的代码:
std::vector<LPCSTR> factions;
...
*(DWORD*)(offset+0x571) = (DWORD)factions.begin(); <- error here
我该如何解决这个问题?
最佳答案
您的目标是消除错误还是使程序正确?在后一种情况下,您必须告诉我们您实际想要做什么。
既然你没有,我就得猜了。我的猜测是您想将 vector 中第一个 LPCSTR
的地址转换为 DWORD
。如果你的代码在以前版本的 VS 中工作,这是更有可能的情况。如果我是对的,试试这个:
*(DWORD*)(offset+0x571) = (DWORD)(&factions.front());
或者这个:
*(DWORD*)(offset+0x571) = (DWORD)(&*factions.begin());
或者这个:
*(DWORD*)(offset+0x571) = (DWORD)(&factions[0]);
如果要将存储在 vector 前面的 LPCSTR
转换为 DWORD
,请执行以下操作:
*(DWORD*)(offset+0x571) = (DWORD)factions.front();
或者这个:
*(DWORD*)(offset+0x571) = (DWORD)(*factions.begin());
或者这个:
*(DWORD*)(offset+0x571) = (DWORD)(factions[0]);
关于c++ - 错误 C2440 : 'type cast' : cannot convert from 'std::_Vector_iterator<_Ty,_Alloc>' to 'DWORD' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3558589/
我正在为 64 位构建软件,之前是为 32 位构建的软件。当我为 64 位构建软件时,该软件完全适用于 32 位,它给出了一些错误,如 error C2782: 'const _Ty &std::mi
我有一个并发队列的模板化实现,它具有如下所示的推送功能: template class concurrent_queue { public: // other code... voi
我在尝试编译以下内容时收到此错误消息 void MyClass::MyFunc() const { int i= 0; myList.push_back(i); } 尽管它返回
我收到以下错误: error C2440: 'static_cast' : cannot convert from 'std::shared_ptr' to 'std::shared_ptr stac
你好,我有两个问题: cannot convert from 'std::vector' to 'std::vector & void CMapObjectPropertyPageAmbience::
我正在实现一个 Visual C++ 项目,它使用 Windows 窗体。我需要使用 C++ 堆栈,我使用了 stack<> .但它给出了这个错误。我包括 #include 和 using names
这个问题在这里已经有了答案: C++: Can I cast a vector to a vector during a function call? (5 个答案) 关闭 9 年前。 问题1>
目前我正在尝试使用 std::unique_ptr,但我在 Visual Studio 2012 中遇到编译器错误。 class A { private: unique_ptr other; pub
如何更正下面的代码以避免出现错误消息?这段代码不应该工作吗?是否可以使用不同的技术(packaged_task、asynch)? #include #include using namespace
错误 C2664:“void std::vector::push_back(_Ty&&)”:无法将参数 1 从“Node *”转换为“Node&&” 我需要帮助... 我创建了 node.h 和 he
我在我的 cpp 函数中引用了一个模板化的快速排序方法,如下所示: main.cpp QuickSort>(testData); testData 在哪里: int arr[] = {0, 5, 3,
我试图通过使用静态断言来禁止创建 const MyClass 类型。当一个类被声明为 const 时,this 关键字的类型为 const MyClass* 所以我认为这会起作用 class MyCl
我正在学习模板,尤其是 std::forward ;当我检查它的实现时,它使用另一个类模板 std::remove_reference在其参数列表中: template _Ty&& forward(t
在完成我的游戏原型(prototype)时,我遇到了这个错误,我以前从未见过。我试图将两个 .cpp 文件链接在一起,这个: #include #include "mage.h"
我目前有一个如下所示的类。 #define SET_METHOD( t , n ) \ private: t n; \ public: void set_##n( t value
//define typedef std::vector vertex_data; //serialise std::ostringstream oss; boost::archive::text_o
我有一个头文件SomeDefines.h,其中包括 #define U64 unsigned long long #define U16 unsigned short 在Myclass.h中,我在顶部
priority_queue> wait_queue; 去编译我的作业并修复所有错误,除了关于这行代码的错误.. 最佳答案 std::priority_queue 的第二个模板参数是适配容器,而不是比
以下代码有效: void CMyPlugin8::myMessageBox(std::string& myString) { myString = "Received the followin
我正在将一些 C++ 代码从 VisualStudio 6 升级到 VisualStudio 2008。 有一个类“GenExportableTree”,看起来很像来自 Dinkumware 的 xt
我是一名优秀的程序员,十分优秀!