C++中sizeof与strlen的区别
摘要:https://blog.csdn.net/21aspnet/article/details/1539951
阅读全文
C++中 const与指针的组合
摘要:在C++中指针与const的组合是C++笔试和面试中常见问题,现将其总结如下:一共有六种形式 (1)const int p; (2)const int* p; (3)int const* p; (4)int * const p;(5)const int * const p;(6)int const
阅读全文
Java笔试经验
摘要:1.Java中的异常以及异常处理:http://www.importnew.com/26613.html 2、利用栈实现堆的功能:https://blog.csdn.net/qq_27225851/article/details/51693069 3、synchroinzed 和 volidate的
阅读全文