月度归档: 2017年2月

3 篇文章

解决Clion toolchain 问题
问题复现依据网络上的方法安装MinGW installer后配置也成功,但新建项目生成CMake时会报错。Error:The C compiler “C:/MinGW/bin/gcc.exe” is not able to compile a simple test program.官方解决办法没太看明白,尝试做了但没效果。We suppose t…
Android 推荐的自定义 Dialog 实现方式
原因 官方推荐的方式是使用AlertDialog,DialogFragment来实现。虽然说很多网上的例子直接使用了extends Dialog来实现,但大部分时间我们应该使用上述的两种方式,因为有时候没有考虑到旋转或者Activity到后台后,Dialog附在的Activity消失,引起内存泄露的问题。 国内很多应用喜欢用Dialog的方式,基本…
yanghui Triangle
My Personal Solution using two dimensional array This is my c form code. #include <stdio.h> #define N 20 // dimension int main() { int yTri[N][N] = {0}; for(int row = 0;…