虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

strIng

strIng是C++、java、VB等编程语言中的字符串,字符串是一个特殊的对象,属于引用类型。在java、C#中,strIng类对象创建后,字符串一旦初始化就不能更改,因为strIng类中所有字符串都是常量,数据是无法更改,由于strIng对象的不可变,所以可以共享。对strIng类的任何改变,都是返回一个新的strIng类对象。C++标准库中strIng类以类型的形式对字符串进行封装,且包含了字符序列的处理操作。[1-2]
  • 编写一个使用strIng类的compareTo方法来比较用户所输入的两个字符串应用程序。输出1个字符串是小于、等于还是大于第二个字符串。用图形用户界面输入输出。

    编写一个使用strIng类的compareTo方法来比较用户所输入的两个字符串应用程序。输出1个字符串是小于、等于还是大于第二个字符串。用图形用户界面输入输出。

    标签: compareTo strIng 字符串 编写

    上传时间: 2013-12-25

    上传用户:vodssv

  • 第一个Java程序 public class Practice { public static void main(strIng args[]) { System.out.print

    第一个Java程序 public class Practice { public static void main(strIng args[]) { System.out.println("**********************************") System.out.println("** Practice makes perfect") System.out.println("**********************************") } }

    标签: public Practice strIng System

    上传时间: 2017-09-05

    上传用户:xiaoyunyun

  • This document help you how encrypt query strIng or some usefull information

    This document help you how encrypt query strIng or some usefull information

    标签: information document encrypt usefull

    上传时间: 2013-12-15

    上传用户:xieguodong1234

  • C++自写strIng

    C++自写strIng类,使用动态数组存储输入的内容,添加 拼接 格式化等

    标签: strIng

    上传时间: 2020-06-12

    上传用户:lace520

  • 大功率LED集成的高压侧LED驱动器 电流检测和PWM调光MOSFET驱动器

    A dimming driver designed to drive an external n-channel MOSFET in series with the LED strIng pro

    标签: LED MOSFET PWM 驱动器

    上传时间: 2013-07-06

    上传用户:1583060504

  • AVR常用库函数介绍

    目录: 1. Character Type Functions - 字符类型函数 2. Standard C Input/Output Functions - 标准输入输出函数 3. Standard Library Functions - 标准库和内存分配函数 4. Mathematical Functions - 数学函数 5. strIng Functions - 字符串函数 6. BCD Conversion Functions - BCD 转换函数 7. Memory Access Functions - 存储器访问函数 8. Delay Functions - 延时函数 9. LCD Functions - LCD函数 10. LCD Functions for displays with 4x40 characters - 4×40 字符型LCD函数 11. LCD Functions for displays connected in 8 bit memory mapped mode -以8 位外部存储 器模式接口的LCD显示函数 12. I2C Bus Functions - I2C 总线函数 13. National Semiconductor LM75 Temperature Sensor Functions - LM75 温度传感器函数 14. Dallas Semiconductor DS1621 Thermometer/Thermostat Functions - DS1621 温度计函 数 15. Philips PCF8563 Real Time Clock Functions - PCF8563 实时时钟函数 16. Philips PCF8583 Real Time Clock Functions - PCF8583 实时时钟函数 17. Dallas Semiconductor DS1302 Real Time Clock Functions - DS1302 实时时钟函数 18. Dallas Semiconductor DS1307 Real Time Clock Functions - DS1307 实时时钟函数 19. 1 Wire Protocol Functions - 单线通讯协议函数 20. Dallas Semiconductor DS1820/DS1822 Temperature Sensors Functions - DS1820/1822 温度传感器函数 21. SPI Functions - SPI 函数 22. Power Management Functions - 电源管理函数 23. Gray Code Conversion Functions - 格雷码转换函数

    标签: AVR 库函数

    上传时间: 2013-10-22

    上传用户:归海惜雪

  • 51单片机实现的RS485通讯程序

      #ifndef __485_C__   #define __485_C__   #include   #include   #define unsigned char uchar   #define unsigned int uint   /* 通信命令 */   #define __ACTIVE_ 0x01 // 主机询问从机是否存在   #define __GETDATA_ 0x02 // 主机发送读设备请求   #define __OK_ 0x03 // 从机应答   #define __STATUS_ 0x04 // 从机发送设备状态信息   #define __MAXSIZE 0x08 // 缓冲区长度   #define __ERRLEN 12 // 任何通信帧长度超过12则表示出错   uchar dbuf[__MAXSIZE]; // 该缓冲区用于保存设备状态信息   uchar dev; // 该字节用于保存本机设备号   sbit M_DE = P1^0; // 驱动器使能,1有效   sbit M_RE = P1^1; // 接收器使能,0有效

    标签: 485 RS 51单片机 通讯程序

    上传时间: 2014-12-26

    上传用户:604759954

  • Keil C51开发系统基本知识3

    Keil C51开发系统基本知识3 1. 1. 专用寄存器include文件例如8031、8051均为REG51.h其中包括了所有8051的SFR及其位定义,一般系统都必须包括本文件。2. 2. 绝对地址include文件absacc.h该文件中实际只定义了几个宏,以确定各存储空间的绝对地址。3. 3. 动态内存分配函数,位于stdlib.h中 4. 4. 缓冲区处理函数位于“strIng.h”中其中包括拷贝比较移动等函数如:memccpy memchr memcmp memcpy memmove memset这样很方便地对缓冲区进行处理。5. 5. 输入输出流函数,位于“stdio.h”中流函数通8051的串口或用户定义的I/O口读写数据,缺省为8051串口,如要修改,比如改为LCD显示,可修改lib目录中的getkey.c及putchar.c源文件,然后在库中替换它们即可。3. 第三节 Keil C51库函数原型列表

    标签: Keil C51 开发系统 基本知识

    上传时间: 2013-11-06

    上传用户:smallfish

  • 微型打印机的C语言源程序

    微型打印机的C语言源程序:微型打印机的C51源程序#define uchar unsigned char#define uint unsigned int#include <reg52.h>#include <stdio.h>#include <absacc.h>#include <math.h>#include <strIng.h>#include <ctype.h>#include <stdlib.h>#define PIN XBYTE[0x8000]#define POUT XBYTE[0x9000]sbit PRINTSTB =P1^6;sbit DOG=P1^7;bdata char pin&#118alue;sbit PRINTBUSY=pin&#118alue^7;sbit PRINTSEL =pin&#118alue^6;sbit PRINTERR =pin&#118alue^5;sbit PRINTACK =pin&#118alue^4;  void PrintstrIng(uchar *strIng1,uchar *strIng2);void initprint(void);void print(uchar a);  void initprint(void) //打印机初始化子程序 {  pin&#118alue=PIN;  if((PRINTSEL==1)&&(PRINTERR==1))  {    print(0x1b); print(0x40); print(0x1b); print(0x38); print(0x4);  }}void print(uchar a) //打印字符a{  pin&#118alue=PIN;  if((PRINTSEL==0)||(PRINTERR==0)) return;  for(;;) {    DOG=~DOG;    pin&#118alue=PIN;    if(PRINTBUSY==0) break;  }  DOG=~DOG;  POUT=a;  PRINTSTB=1;  PRINTSTB=1;  PRINTSTB=1;  PRINTSTB=1;  PRINTSTB=0;  PRINTSTB=0;  PRINTSTB=0;  PRINTSTB=0;  PRINTSTB=1;}void PrintstrIng(uchar *strIng) //打印字符串后回车{  uchar CH;  for (;;) {   DOG=~DOG;   CH=*strIng;   if (CH==0) { print(0x0d); break; }   print(CH);   strIng++;  }  initprint();}

    标签: 微型打印机 C语言 源程序

    上传时间: 2013-10-18

    上传用户:hasan2015

  • 基于(英蓓特)STM32V100的串口程序

    This example provides a description of how  to use the USART with hardware flowcontrol and communicate with the Hyperterminal.First, the USART2 sends the TxBuffer to the hyperterminal and still waiting fora strIng from the hyperterminal that you must enter which must end by '\r'character (keypad ENTER button). Each byte received is retransmitted to theHyperterminal. The strIng that you have entered is stored in the RxBuffer array. The receivebuffer have a RxBufferSize bytes as maximum. The USART2 is configured as follow:    - BaudRate = 115200 baud      - Word Length = 8 Bits    - One Stop Bit    - No parity    - Hardware flow control enabled (RTS and CTS signals)    - Receive and transmit enabled    - USART Clock disabled    - USART CPOL: Clock is active low    - USART CPHA: Data is captured on the second edge     - USART LastBit: The clock pulse of the last data bit is not output to                      the SCLK pin

    标签: V100 STM 100 32V

    上传时间: 2013-10-31

    上传用户:yy_cn