我知道错误从何而来。我已经在C++代码下面标记了它。我不知道这个错误。希望有人帮帮我。如何修复这个问题?
错误为:体系结构x86_64的符号未定义:“operator<<(std::__1::basic_ostream
#include <iostream>
using namespace::std;
template<class T>
class Stack{
public:
Stack(int stackcapacity);
bool Isempty()const;
T& Top()const;
void Push(const T& item);
void Pop();
friend ostream &operator<<(ostream &os, Stack<T> &s);
private:
T* stack;
int top;
int capacity;
};
template<class T>
Stack<T>::Stack(int stackcapacity):capacity(stackcapacity){
if(capacity<1)
throw "stack capacity must be >0";
stack=new T[capacity];
top=-1;
}
template<class T>
inline bool Stack<T>::Isempty()const{
return top==-1;
}
template<class T>
inline T& Stack<T>::Top()const{
if(Isempty())
throw"stack is empty";
return stack[top];
}
template<class T>
void Stack<T>::Push(const T &x){
if(top==capacity-1)
{
T *temp=new T[2*capacity];
copy(stack,stack+capacity,temp);
delete[]stack;
stack=temp;
capacity*=2;
}
stack[++top]=x;
}
template<class T>
void Stack<T>::Pop(){
if(Isempty())
throw "stack is empty";
stack[top--].~T();
}
struct offsets{
int a,b;
};
enum directions{N,NE,E,SE,S,SW,W,NW};
struct Items{
int x,y,dir;
Items(){};
Items(int a,int b,int d){
x=a;
y=b;
dir=d;
}
};
template<class T>
ostream& operator<<(ostream& os,Stack<T>& s){
os<<"top="<<s.top<<endl;
for(int i=0; i<=s.top;i++){
os<< i <<":"<<s.Stack[i]<<endl;
}
return os;
}
ostream& operator<<(ostream& os,Items& item){
return os<< item.x<<","<<item.y<<","<<item.dir;
}
int maze[13][17] = {
{ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 },
{ 1, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1 },
{ 1, 1, 0, 0, 0, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1 },
{ 1, 0, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1 },
{ 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 0, 1 },
{ 1, 1, 1, 0, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1 },
{ 1, 0, 0, 1, 1, 0, 1, 1, 1, 0, 1, 0, 0, 1, 0, 1, 1 },
{ 1, 0, 0, 1, 1, 0, 1, 1, 1, 0, 1, 0, 0, 1, 0, 1, 1 },
{ 1, 0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1 },
{ 1, 1, 1, 0, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 1 },
{ 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 1 },
{ 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1 },
{ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 },
};
void Path(const int m,const int p){
const offsets move[8]={{-1,0},{-1,1},{0,1},{1,1},{1,0},{1,-1},{0,-1},{-1,-1}};
int mark[13][17]={0};
mark[1][1]=1;
Stack<Items> stack(m*p);
Items temp(1,1,E);
stack.Push(temp);
while(!stack.Isempty()){
temp=stack.Top();
stack.Pop();
int i=temp.x;
int j=temp.y;
int d=temp.dir;
while(d<8){
int g=i+move[d].a;
int h=j+move[d].b;
if((g==m)&&(h==p)){
cout << stack; //error comes from this row
cout << i << " " << j << endl;
cout << m << " " << p << endl;
return;
}
if((!maze[g][h])&&(!mark[g][h])){
mark[g][h]=1;
temp.x=i;
temp.y=j;
temp.dir=d+1;
stack.Push(temp);
i=g;
j=h;
d=N;
}
else d++;
}
}
cout << "No path in maze";
}
int main(int argc, const char * argv[]) {
// insert code here...
Path(11,15);
return 0;
}
运算符<<
的友元声明与现有的运算符<<
定义不匹配。它也必须声明为模板,否则它将被视为一个单独的非模板函数,在重载解析过程中会被首选,但不会实现:
template<class xx_T>
friend ostream &operator<<(ostream &os, Stack<xx_T> &s);
lipo-info libxxxx.a fat文件中的体系结构:libxxxx.a是:armv7 i386 arm64 但是依赖项目中的编译器给出了链接错误,
我已经用cocoaPods安装了一个库(第一次使用cocoaPod),因为我在“架构x86_64的未定义符号”部分中有很多错误。Libpods.a在我的项目中是红色的,在pods产品组中,Foundation.Framework在pods中是红色的。我试着重新安装它,清除项目(也是derivedData),从链接库中删除libpod.a和其他东西,问题仍然没有改变。我的播客文件是: 在他们三个像那
完整堆栈跟踪: Ld/users/danoved/library/developer/xcode/deriveddata/todobox-gmtanlmumdrkqactpypioaempcuc/build/products/debug-iphonesimulator/stash.appex/stash normal x86_64 cd/users/danoved/source/myproject
问题内容: 我正在使用dlopen在运行时加载共享库 在该共享库中,我引用了另一个共享库“ SharedLibarary2.so”中定义的const char *。 可执行文件和两个库都是使用-rdynamic构建的。 但是使用dlopen时,我仍然收到运行时错误:“ / usr / lib / SharedLibarary1.so:未定义符号”,并指向损坏的const char *具有未定义符号
我正在尝试JNI示例代码。 (您可以通过github获得以下所有源代码:https://github.com/pilhoon/jni-test) sample.java sample.c 采样.h 我在CentOS6.3上用gcc编译了这些 但是当我运行'java sample'时,出现了一个错误。 我该怎么解决这个?
我一直在尝试将Zendesk添加到我的swift项目中,并一直在尝试遵循以下步骤: https://developer.zendesk.com/embeddables/docs/ios_support_sdk/sdk_add#使用cocoapods添加-the-sdk-white 我已经使用以下命令添加了pod: 并将其添加到我的项目的: 但是,当我尝试运行我的项目时,我得到了这个错误: 我一直在