线程 1:断点 1.1(1)
Thread 1: Breakpoint 1.1(1)
我正在尝试做一个小项目,但遇到了断点问题。我以前在 char dirname[256] 上有它,当时我有一个 char 持有它。但是,在我删除 char 之后,它将断点更改为 cout,这是我以前从未有过的。我在 c++ 中相当新,稍微深入的解释会很好。谢谢。
代码:C++
// main.cpp
// File Creator and Sorter
//
// Created by yared yohannes on 12/15/21.
//
#include <stdio.h>
#include <cstdio>
#include <dirent.h>
#include <iostream>
using namespace std;
int main(){
char dirname[256];
cout << "What is the name of the file: ";
cin >> dirname;
DIR *d = opendir(dirname);
if( ! d)
{ std:: cout << "ERROR: Please provide a valid directory path.\n"; }
}
我认为您的问题与使用 XCode 编辑器有关,而不是与编码有关。我推荐阅读 this article.
我正在尝试做一个小项目,但遇到了断点问题。我以前在 char dirname[256] 上有它,当时我有一个 char 持有它。但是,在我删除 char 之后,它将断点更改为 cout,这是我以前从未有过的。我在 c++ 中相当新,稍微深入的解释会很好。谢谢。
代码:C++
// main.cpp
// File Creator and Sorter
//
// Created by yared yohannes on 12/15/21.
//
#include <stdio.h>
#include <cstdio>
#include <dirent.h>
#include <iostream>
using namespace std;
int main(){
char dirname[256];
cout << "What is the name of the file: ";
cin >> dirname;
DIR *d = opendir(dirname);
if( ! d)
{ std:: cout << "ERROR: Please provide a valid directory path.\n"; }
}
我认为您的问题与使用 XCode 编辑器有关,而不是与编码有关。我推荐阅读 this article.