码迷,mamicode.com
首页 >  
搜索关键字:char s    ( 35907个结果
java关键字和标识符
java 关键字 数据类型:boolean、int、long、short、byte、float、double、char、class、interface。 流程控制:if、else、do、while、for、switch、case、default、break、continue、return、try、c ...
分类:编程语言   时间:2021-03-17 14:43:39    阅读次数:0
基于单片机时钟24和12小时制设计
1473下载地址 https://docs.qq.com/doc/DWEpnR2pOWU91b3p4?pub=1&dver=2.1.0 显示格式:hh-mm-ss 可更改的12小时制或24小时制 整点报时功能 闹钟功能 校时功能 #include<reg51.h> char code led_mod ...
分类:其他好文   时间:2021-03-17 14:28:24    阅读次数:0
c++filt使用
c++函数在linux系统下编译之后会变成如下样子 _ZNK4Json5ValueixEPKc 在linux命令行使用c++filter $ c++filt _ZNK4Json5ValueixEPKcJson::Value::operator[](char const*) const 可以得到函数的 ...
分类:编程语言   时间:2021-03-17 14:19:33    阅读次数:0
基于单片机数码管秒表控制系统设计
1485下载地址 https://docs.qq.com/doc/DWEpnR2pOWU91b3p4?pub=1&dver=2.1.0 #include <reg51.h> #include <intrins.h> #define uchar unsigned char #define uint u ...
分类:其他好文   时间:2021-03-17 14:10:52    阅读次数:0
Delphi用数字访问相关的内存(此处数字要为有效地址,且知道该地址的类型)
Delphi XE 仅仅是学习记录 unit 开始 unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; typ ...
分类:Windows程序   时间:2021-03-17 14:08:06    阅读次数:0
递归存储二叉树和遍历二叉树
#include<stdio.h> #include<stdlib.h> typedef char ElemType; //结点定义 typedef struct node{ ElemType data; struct node* lchild,*rchild; }BiTNode,*BiTree; ...
分类:其他好文   时间:2021-03-17 14:03:43    阅读次数:0
类的转换
类型转换 public class 类的转换 { public static void main(String[] args) {? /*类型转换 低 高 byte,short,char-int-long-float-double 高到低强制转换,低到高自动转换 */? //强制转换? int a ...
分类:其他好文   时间:2021-03-16 14:07:25    阅读次数:0
java基础
基本类型 整型:byte、short、int、long 浮点型:float、double 字符型:char 布尔型:boolean(只有两个值true与false) 运算符: 1.算术运算符 +、-、*、/、%(求余)、++(自增1)、--(自减1) %用来求余数(取模) ++a(--a)与a++( ...
分类:编程语言   时间:2021-03-16 13:58:27    阅读次数:0
makefile 中 $@ $^ %< 使用
假设有下面这样的一个程序,源代码如下: 1 /* main.c */ 2 #include "mytool1.h" 3 #include "mytool2.h" 4 5 int main(int argc,char **argv) 6 { 7 mytool1_print("hello"); 8 my ...
分类:其他好文   时间:2021-03-16 13:48:47    阅读次数:0
写接口练习题
create table TbStudent(stuid integer not null,stuname varchar(20) not null,stusex bit default 1,stubirth datetime not null,stutel char(11),stuaddr var ...
分类:其他好文   时间:2021-03-16 13:47:22    阅读次数:0
35907条   上一页 1 ... 26 27 28 29 30 ... 3591 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!