- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用 malloc 创建了以下两个暗淡的 char 数组,称为 json_data。mem进程的分配工作正常。
char **json_data;
json_data = (char**)malloc(sizeof(char *) * NUMBER_OF_OBJECT);
for (int i = 0; i < NUMBER_OF_OBJECT; i++) {
*(json_data + i) = (char*)malloc(sizeof(char) * 10000);
}
但每当我尝试访问数据时,都会收到 SegmentationFault 错误。以下是我用来访问 json_data 中数据的方法:
第一个:
for (int i = 0; i < NUMBER_OF_OBJECT; i++ ) {
for (int j = 0 ; j < 10000; j++ ) {
printf("%c", *(*(json_data +i) + j));
}
}
第二个:
for (int i = 0; i < NUMBER_OF_OBJECT; i++ ) {
for (int j = 0 ; j < 10000; j++ ) {
printf("%c", json_data[i][j]);
}
}
这是完整的代码,直到 foo 循环:
// define local variables
int CHAR_SIZE = size_in_char("main.json"); // size of file in bytes, each char represents a byte
int NUMBER_OF_OBJECT = 0; // number of object in json file
// array holding json data char by char
char *data = malloc( sizeof(char)* CHAR_SIZE );
store("main.json", data);
char **json_data;
json_data = (char**)malloc(sizeof(char *) * NUMBER_OF_OBJECT);
for (int i = 0; i < NUMBER_OF_OBJECT; i++) {
*(json_data + i) = (char*)malloc(sizeof(char) * 10000);
}
int j = 0; // index of data array
int bracket_counter = 0; // conter for opning and closing of json object
int obj_index = 0; // index of json_data array
while( data[j] != '\0') {
// start & end of an object
// k temporay index for each object
int k = 0, start = 0 , end = 0;
if ( data[j] == '{') {
if (bracket_counter == 0 ) {
// begining of json object
start = j; // stroe the value of begining
bracket_counter++;
k = j; // init the temp index
do {
// keep going until the end of json object
k++;
if (data[k] == '{') {
bracket_counter++;
}
if ( data[k] == '}') {
bracket_counter--;
}
} while (/*data[k] != '}' &&*/ bracket_counter != 0);
end = k; // store end of json object
// copy copy json object into json_data
strncpy(json_data + obj_index, data + start , end - start + 2 );
*(json_data + obj_index + ( end - start + 1 ) ) = '\0'; // add null terminated value at end
obj_index++;
}
j = k; // move data index to end of current object and contineu the parsing
}
j++;
}
printf("the json file contains %d objects\n", NUMBER_OF_OBJECT);
for (int i = 0; i < NUMBER_OF_OBJECT; i++ ) {
for (int j = 0 ; j < 10000; j++ ) {
printf("%c", json_data[i][j]);
}
}
void store(string filename, char *data) {
/*
open file named by filename.
read data and stored it in data[].
data[] need to be created and memory allocated in main function
*/
char buff = 1; // buffer for fgetc();
int j = 0 ; // index of array data[];
FILE *file = fopen(filename, "r");
if (!file) {
printf("ERROR OPENING FILE\n");
printf("press enter to exit...");
getc(stdin);
exit(cant_open_file);
}
while ( buff != EOF) {
// read char by char
buff = fgetc(file);
// escape whitespace char during the process
if ( buff != '\n' && buff != ' ' && buff != '\t') {
data[j++] = buff;
}
}
// add null terminated value at end of array
data[j] = '\0';
// close the file
fclose(file);
}
最佳答案
它崩溃了,因为你的 for 循环遍历的元素比你分配的要多:
*(json_data + i) = (char*)malloc(sizeof(char) * 10000);
一万
for (int j = 0 ; j < 100000; j++ ) {
十万
关于在C中使用malloc创建两个暗淡的char数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53980909/
我目前正在开发的应用程序使用很多 ImageViews 作为按钮。这些按钮上的图形使用 Alpha channel 淡出按钮的边缘,使它们看起来不规则。目前,我们必须为每个按钮生成 2 个图形(1 个
我正在尝试将 3 dim numpy 数组减少为 2 dim 数组,但除了将其放入 for 循环之外想不出其他方法,这会花费太多时间。下面是我的代码片段。 train_dataset 是一个 3 维形
当我的 ListView 中的一个项目被点击时,我会在一个对话框中弹出几个选项供用户选择。但是,在不同的情况下,我想禁用一个或多个选项,以便用户无法选择它们。这是一些代码。 public class
是否可以在不使用 strlen、使用递归和这个定义的情况下就地反转字符串? void reverse(char *s, int dim); 我唯一能做的就是: void reverse(char *s
所以我试图实现 (a * b) * (M * a.T) 但我不断收到 ValueError 。由于我是 python 和 numpy 函数的新手,因此帮助会很棒。提前致谢。 import numpy.
我正在做机器学习作业,并且正在制作逻辑回归下降梯度和逻辑回归成本。我的功能是这样的: def calcLogRegressionCost(X, y, theta): #X is the fea
def cal_cost(theta,X,y): m = len(y) predictions = X.dot(theta) cost = (1/2*m) * np.s
我有 2 个 numpy 数组: x= np.linspace(1,10,100) + np.random.randn(n)/5 y = np.sin(x)+x/6 + np.random.randn
我是一名优秀的程序员,十分优秀!