string到char*


	string s("hello");
	const char *p = s.c_str();  //返回对象内部指针指向字符串的首元素地址