私は、次のスニペットを持っています。無効な変換の問題C++で
以下のコードで何が問題になっていますか?どのように私はそれを克服することができます。
全コードはここにある:文字列をループするとき
#include <iostream>
#include <vector>
#include <fstream>
#include <sstream>
#include <time.h>
using namespace std;
int main (int arg_count, char *arg_vec[]) {
if (arg_count < 3) {
cerr << "expected one argument" << endl;
return EXIT_FAILURE;
}
// Initialize Random Seed
srand (time(NULL));
string line;
string tag1 = arg_vec[1];
string tag2 = arg_vec[2];
double SubsRate = 0.003;
double nofTag = static_cast<double>(atoi(arg_vec[3]));
vector <string> DNA;
DNA.push_back("A");
DNA.push_back("C");
DNA.push_back("G");
DNA.push_back("T");
for (unsigned i=0; i < nofTag ; i++) {
int toSub = rand() % 1000 + 1;
if (toSub <= (SubsRate * 1000)) {
// Mutate
cout << toSub << " Sub" << endl;
int mutateNo = 0;
for (int j=0; j < tag1.size(); j++) {
mutateNo++;
string base = tag1[j]; // This fail
int dnaNo = rand() % 4;
if (mutateNo <= 3) {
// Mutation happen at most at 3 position
base = DNA[dnaNo];
}
cout << tag1[j] << " " << dnaNo << " " << base << endl;
//cout << base;
}
cout << endl;
}
else {
// Don't mutate
//cout << tag1 << endl;
}
}
return 0;
}
はなぜchar
からconst char*
に無効な変換を得るのですか?
でも、 "if(mutateNo <= 3) – neversaint
@foolishbrat"の中の "base"と競合します:OPはDNAのために間違ったタイプを選択しています(おそらくvector(char))、no? – dmckee
Um。 ..s/the OP/you/Sorry、慎重に読んでいなかった... – dmckee