0
작업 3 : GPtrArray를 인쇄하기 위해 g_ptr_array_foreach를 사용하고 있습니다 ... 나에게 ... 이것은 우리가하는 방법입니다.하지만 여전히 세그먼트 오류가 발생합니다 .. 제발 .. 어떤 통찰력 동료 동료들? :)세그먼트 오류 : g_ptr_array_foreach
/************************************************************************************************************
* FILE NAME : ex-garray-7.c
*
* DESCRIPTION : demonstrates implementation of pointer arrays i.e GPtrArray
*
************************************************************************************************************/
#include<stdio.h>
#include<glib.h>
#define SUCCESS 0
/************************************************************************************************************
* FILE NAME : main
*
* DESCRIPTION : allocates memory to pointer array, pointers point to strings
*
* RETURNS : SUCCESS
*
***********************************************************************************************************/
int main(int argc, char** argv)
{
/**********************************NEW LEARNING************************************************************
- all glib functions are perfectly alright
- */
//gpointer ret_val = NULL;
/* GPtrArray is designed to hold pointers,
- no need to specify particular type when creating it or adding and indexing elements. */
/******************************REQUIRED DECLARATIONS*******************************************************/
// declare GPtrArray pointer variable
GPtrArray* ptrarr = NULL;
/********************************REQUIREDD INITIALIZATIONS*************************************************/
// allocate memory to GPtrArray using g_ptr_array_new();
ptrarr = g_ptr_array_new(); /* No argument while allocating memory to array of pointers
/*********************************PERFORMING REQUIRED TASKS************************************************/
/* 1. add string hello to it using
g_ptr_array_add(
GPtrArray* array,
g_strdup(<"string">)); */
g_ptr_array_add(
ptrarr,
g_strdup("Let's"));
// 2. add other strings like I love C and gpointers too
g_ptr_array_add(
ptrarr,
g_strdup("Use"));
g_ptr_array_add(
ptrarr,
g_strdup("GLib"));
g_ptr_array_add(
ptrarr,
g_strdup("\n"));
/* 3. print entire GPtrArray using
void g_ptr_array_foreach(
GPtrArray* array,
GFunc function,
gpointer user_data); */
g_ptr_array_foreach(
ptrarr,
(GFunc)printf,
NULL);
printf("\n Removing the third element i.e index is 2");
/* 4. remove the third element using
gpointer g_ptr_array_remove_index(
GPtrArray* array,
guint index_
); */
g_ptr_array_remove_index(ptrarr, 0);
/* 5. remove the new 3rd and 2nd element
gpointer g_ptr_array_remove_range(
GPtrArray* array,
guint index_,
guint length
); */
g_ptr_array_remove_range(ptrarr, 0,1);
// 6. print the new GPtrArray
printf("\n pointer array now is \n ");
g_ptr_array_foreach(
ptrarr,
(GFunc)printf,
NULL);
// 7. print the first item in GPtrArray
printf("\n The first element in the GPtrArray is %s ", g_ptr_array_index(ptrarr, 0)/* same as g_array_index*/);
// 8. free the memory
g_ptr_array_free(ptrarr, TRUE); // same as g_array_free
return SUCCESS;
}
GPtrarray의 요소를 인쇄하려면 다른 방법이 있습니까? 입심 foreach
기능에
오 .. 내가 explicity 프로그램 내 어딘가에 내 printf() 함수를 작성해야 할 것 같아요 .. 제가 선생님이 쓰고 있습니까? –
그 내부에 printf를 호출 할 수있는 프로토 타입과 일치하는 함수를 만들어야합니다. 나는이 glib 함수를 사용하는 예제 프로그램을 조언하는 것이 좋습니다 –
감사합니다 각하 ... :) –