- 论坛徽章:
- 0
|
使用apache apr创建hash表,为何在HASH表中存储的关键字和值的长度只能是三个字符?
代码如下:
static void modify_hashtab( apr_hash_t *ht, apr_pool_t *mp)
{
const char *key;
const char *val;
char ch;
do
{
printf(" \nInput the key:");
scanf("%s",&key);
printf(" \nInput the value:");
scanf("%s",&val);
/* 存储于hash表中 */
apr_hash_set(ht,apr_pstrdup(mp,&key),APR_HASH_KEY_STRING,apr_pstrdup(mp,&val) );
printf(" Press \"y\" ,continue. Or Press \"n\" , break :\n" );
getchar();
scanf("%c",&ch);
}while( ch == 'y' );
}
/* 遍历整个hash表 */
static void iterate_hashtab( apr_hash_t *ht )
{
apr_hash_index_t *hi;
int count = 0;
for ( hi = apr_hash_first( NULL, ht); hi; hi = apr_hash_next(hi) )
{
const char *k;
const char *v;
apr_hash_this( hi, (const void **)&k, NULL,(void **)&v);
printf( "ht iteration: key = %s, val = %s \n", k, v);
count++;
}
printf(" the count is %d\n", count );
}
int main( int argc, const char * argv[] )
{
apr_pool_t *mp;
apr_hash_t *ht;
apr_initialize();
apr_pool_create(&mp, NULL);
ht = apr_hash_make(mp);
modify_hashtab(ht, mp);
{
const char *key_found = "aa";
const char * val = apr_hash_get( ht, key_found,APR_HASH_KEY_STRING );
printf("val for %s is %s \n", key_found,val );
}
iterate_hashtab(ht);
apr_terminate();
/* the hash table is destroyed when @mp is destroyed */
apr_pool_destroy(mp);
return 0;
} |
|