摘要: 阅读全文
posted @ 2018-09-13 19:20 友哥 阅读(353) 评论(0) 推荐(0)
摘要: #include #include int main(int argc, char **argv) { MYSQL *con = mysql_init(NULL); if (con == NULL) { fprintf(stderr, "%s\n", mysql_error(con)); exit(1); } if (mysql_real_c... 阅读全文
posted @ 2018-09-13 19:07 友哥 阅读(1015) 评论(1) 推荐(0)
摘要: #include using namespace std; /* start of Enclosing class declaration */ class Enclosing { private: int x; /* start of Nested class declaration */ class Nested { ... 阅读全文
posted @ 2018-09-13 11:56 友哥 阅读(161) 评论(0) 推荐(0)