码迷,mamicode.com
首页 >  
搜索关键字:warning    ( 3842个结果
const char **,char *const *,char ** const
1、告警#include<stdlib.h>#include<stdio.h>intmain(){char*p_str[]={"char**","constchar**","char*const*","char**const",};char**pp=p_str;constchar**cpp=p_str;char*const*pcp=p_str;char**constppc=
分类:其他好文   时间:2019-08-04 22:29:44    阅读次数:101
BasePresenter 基类
package com.test.mvp.mvpdemo.mvp.v4.basemvp; import android.util.Log; import java.lang.ref.SoftReference;import java.lang.reflect.InvocationHandler;im ...
分类:其他好文   时间:2019-08-04 19:33:11    阅读次数:97
[.net core]7 4种app key value的配置方法及优先顺序
就是这货 点开查看内容 可以在里面加上自己的key value配置 ,比如 然后使用依赖注入获取我刚才加入的MyKey 1.为Startup类创建构造函数, 使用构造函数注入 2把注入的实例存到私有字段 3.使用这个存起来的实例 4.查看运行效果 除了在appsetting.json里配置,还可以在 ...
分类:移动开发   时间:2019-08-03 23:45:58    阅读次数:272
python小技巧
1、print(list(zip(*(iter(range(20)),)*3))) 输出结果:[(0,1,2),(3,4,5),(6,7,8),(9,10,11),(12,13,14),(15,16,17)] 2、 类中用__slots__将成员静态化,可以节省大量内存。 装饰器,常见用途如函数计时 ...
分类:编程语言   时间:2019-08-02 16:39:14    阅读次数:96
250719备份存疑点&error&warning
ERROR&WARNING 1.cannot open source input file"DMA.h":no such file or directory. 头文件的路径没添加啊,这咋能忘呢 2.expected an expression 3.two many arguments(啥玩意我也忘了 ...
分类:其他好文   时间:2019-07-29 14:54:56    阅读次数:145
220719备份存疑点&error&waring
220719备份: ERROR&WARNING: 1.deprecated declaration GPIO_InitConfig_give arg types. 旧程序:void GPIO_InitConfig(); 新程序:void GPIO_InitConfig(void); warning解 ...
分类:其他好文   时间:2019-07-29 14:28:43    阅读次数:132
django orm 分页(paginator)取数据出现警告manage.py:1: UnorderedObjectListWarning: Pagination may yield inconsistent results with an unordered object_list: <class 'sign.models.Guest'> QuerySet.
使用django的orm做分页(Paginator)时出现了下面的警告 网上搜的是取数据前要先排序,加入下面代码后取数据就不会出现警告了 ...
分类:其他好文   时间:2019-07-29 10:21:49    阅读次数:259
Golang Data Race Detector
原文链接:http://maoqide.live/post/golang/golang data race detector/ [译] https://golang.google.cn/doc/articles/race_detector.html golang 中的几种 Data Race 场景及 ...
分类:其他好文   时间:2019-07-28 15:54:10    阅读次数:98
260719流水账
今天的工作其实也还算是有些进展的,但是看起来并不明显。我在想是不是硬件方面的进展更容易被看到。 之前一直说我的C语言基础差,虽然已经好久回家都没有学习了,但是在工作过程中还是有了一些进步的。 今天的收获是调试程序的过程中调出了一堆的error和warning,不过在修改过程中稀里糊涂的就解决了,我认 ...
分类:其他好文   时间:2019-07-26 19:46:15    阅读次数:102
Bootstrap
一.脚手架 1. 全局设置 排版和链接 Bootstrap 为屏幕、排版和链接设置了基本的全局样式。尤其是,我们: 移除了body的 margin 设置了 body 的背景颜色 background-color: white; 使用 @baseFontFamily、@baseFontSize 和@b ...
分类:其他好文   时间:2019-07-26 01:59:49    阅读次数:149
3842条   上一页 1 ... 62 63 64 65 66 ... 385 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!