码迷,mamicode.com
首页 >  
搜索关键字:endif    ( 913个结果
PHP中的替代语法(冒号、endif、endwhile、endfor)
PHP中的替代语法(冒号、endif、endwhile、endfor) 转载 2012年10月07日 09:48:10 标签: php / wordpress / html 16096 转载 2012年10月07日 09:48:10 标签: php / wordpress / html 16096 ...
分类:Web程序   时间:2017-12-07 10:56:42    阅读次数:208
单链表的实现
Node.h文件 #pragma once#ifndef NODE_H#define NODE_H class Node{public: int data; Node *next; void printNode(); };#endif // !NODE_H Node.cpp文件 #include " ...
分类:其他好文   时间:2017-12-06 00:50:07    阅读次数:155
django模板解析 循环列表中 切片和求长度
{% for subrow in subdic.content|slice:":5" %} {% endfor %} {% if "{{subdic.content|length}}" > 5 %} {% endif %} 如上,关键在于 循环中,里面的列表外面没有双引号 而if中,列表外面有双引号 ...
分类:其他好文   时间:2017-12-05 01:04:06    阅读次数:1184
#ifdef __cplusplus
引自:https://www.cnblogs.com/stonecrazyking/archive/2006/09/23/512552.html 看到一篇总结很到位的文章,记录一下。 时常在cpp的代码之中看到这样的代码: #ifdef __cplusplus extern "C" { #endif ...
分类:其他好文   时间:2017-11-28 11:43:56    阅读次数:125
关闭进程接口封装
1 #pragma once 2 3 #ifndef WINDOWS_H 4 #define WINDOWS_H 5 #include 6 #endif 7 8 #ifndef TLHELP32_H 9 #define TLHELP32_H 10 #include 11 #endif 12 13 B... ...
分类:系统相关   时间:2017-11-25 13:15:54    阅读次数:264
jq版本 ie8
<!--IE8只能支持jQuery1.9--><!--[if lte IE 8]><script src="http://cdn.bootcss.com/jquery/1.9.0/jquery.min.js"></script><![endif]--> ...
分类:其他好文   时间:2017-11-20 14:32:32    阅读次数:120
HiperLink
//HiperLink.H #ifndef __HYPERLINK_H__ #define __HYPERLINK_H__ #if _MSC_VER >= 1000 #pragma once #endif // _MSC_VER >= 1000 ///////////////////////////... ...
分类:其他好文   时间:2017-11-14 17:15:00    阅读次数:228
条件编译
条件编译 #define A 0 //把A定义为0#if(条件满足)执行代码1#else执行代码2#endif #define SEGGER #ifdef SEGGER ...code...#endif#ifndef SEGGER ...code...#endif注意:一个#ifdef配一个#end ...
分类:其他好文   时间:2017-11-10 10:55:00    阅读次数:117
stm32编程调用函数问题
#ifndef __LED_H_#define __LED_H_ void LED_init(void); #endif 在主函数中,调用其他头文件中的函数: int main(){ void delay_init(void);void void LED_init(void); } 注意: 1、要添 ...
分类:其他好文   时间:2017-11-10 00:38:44    阅读次数:201
html5学习
<!--[if lt IE 9]> <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]--> 以上代码是一个注释,作用是在 IE 浏览器的版本小于 IE9 时将读取 html5.js ...
分类:Web程序   时间:2017-11-07 00:21:57    阅读次数:195
913条   上一页 1 ... 20 21 22 23 24 ... 92 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!