码迷,mamicode.com
首页 >  
搜索关键字:char instead of a st    ( 42572个结果
日期样式常量及用法
/// <summary> /// 日期格式 2019-04 /// </summary> public const string DATE_MONTH_FORMAT = "yyyy-MM"; /// <summary> /// 日期格式 2019-04-25 /// </summary> publ ...
分类:其他好文   时间:2021-03-15 10:39:21    阅读次数:0
1352【毕设课设】基于单片机电池容量电压测量仿真设计
【资源下载】下载地址如下:https://docs.qq.com/doc/DTlRSd01BZXNpRUxl #include "inif.h" #include <at89x52.h> #include <absacc.h> #include "LCD1602.H" unsigned char d ...
分类:其他好文   时间:2021-03-12 12:41:26    阅读次数:0
redis缓存
一首页热点数据放到缓存(不经常修改的数据) 1.轮播图 2.热门课程 3.名师 代码实现 1.导入依赖 <!-- redis --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-st ...
分类:其他好文   时间:2021-03-12 12:15:40    阅读次数:0
Java数据类型转换
public class Demo04 { public static void main(String[] args) { //低 >高 //byte、short、char->int->long->float->double int i = 128; //强制转换,(类型)变量名 高-->低 by ...
分类:编程语言   时间:2021-03-11 19:31:35    阅读次数:0
1310【毕设课设】基于单片机超声波测距和温度采集报警(含PCB)
【资源下载】下载地址如下:https://docs.qq.com/doc/DTlRSd01BZXNpRUxl #include <reg52.h> #include <intrins.h> #define uchar unsigned char // 以后unsigned char就可以用uchar ...
分类:其他好文   时间:2021-03-11 14:48:55    阅读次数:0
putchar与getchar
#include <stdio.h>#include <stdlib.h>void myputs(char*p) //此处的*号是标志,标志这P是一个指针{ if(p==NULL){ printf("需要输出的字符串为空,请重新输入"); }else{ while(1) {putchar(*p++) ...
分类:其他好文   时间:2021-03-11 14:18:40    阅读次数:0
java——算术运算符——加号的多种
加号的多种用法 四则运算当中的加号“+”常见的三种用法: 1.对于数值来说,那就是加法。 2.对于字符串char类型来说,在计算前,char会被提升成为int,然后再计算。 char类型字符,和int类型数字之间的对照关系表:ASCII、Unicode 3.对于字符串String(首字母大写,并不是 ...
分类:编程语言   时间:2021-03-10 13:35:20    阅读次数:0
常量指针和指针常量 C / C++
按英文的字面意思就比较好理解了: 常量指针:pointer to const 字面意思:指向常量的指针 指针常量:const pointer 字面意思:指针本身是个常量 看一段代码: char hello[6] = "hello"; char world[6] = "world"; const ch ...
分类:编程语言   时间:2021-03-10 12:55:03    阅读次数:0
1287【毕设课设】基于单片机T6963C液晶显示的模拟射击训练游戏
【资源下载】百度网盘下载地址如下:https://docs.qq.com/doc/DTlRSd01BZXNpRUxl #include<reg52.h> #include <intrins.h> #include <string.h> #include <stdlib.h> #include <st ...
分类:其他好文   时间:2021-03-09 13:47:15    阅读次数:0
java 实现发送邮件功能
最近工作项目中需要使用到邮件功能,参考网上的文章,实现了一个基于java的邮件发送功能;直接上代码: 1、依赖 ...
分类:编程语言   时间:2021-03-09 13:23:52    阅读次数:0
42572条   上一页 1 ... 33 34 35 36 37 ... 4258 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!