码迷,mamicode.com
首页 >  
搜索关键字:string+    ( 95377个结果
在netfarmerwork3.5版本的winform下执行string串中的代码
namespace TestQuestionaire { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void bt_ok_Click(object sender, Eve ...
分类:Windows程序   时间:2021-06-04 19:41:14    阅读次数:0
皮亚诺曲线距离
思路:把每一个k阶看成一个3*3的网格,计算出点到每层(0,0)的距离,递归求出下一阶n-1的距离。 #include"stdio.h" #include"math.h" #include"string.h" #include"iostream" #include"algorithm" using ...
分类:其他好文   时间:2021-06-04 19:40:06    阅读次数:0
memset
1、头文件<string.h> 2、函数原型void *memset(void *str, int c, size_t n) 3、功能:复制字符 c(一个无符号字符)到参数 str 所指向的字符串的前 n 个字符 链接:C 库函数 – memset() | 菜鸟教程 (runoob.com) ...
分类:其他好文   时间:2021-06-04 19:26:42    阅读次数:0
@NotEmpty、@NotBlank、@NotNull三种注解的区别
@NotEmpty 用在集合类上面加了@NotEmpty的String类、Collection、Map、数组,是不能为null或者长度为0的(String Collection Map的isEmpty()方法)@NotBlank只用于String,不能为null且trim()之后size>0@Not ...
分类:其他好文   时间:2021-06-04 19:22:27    阅读次数:0
Hello,World
HelloWorld 随便新建一个文件夹,存放代码 新建一个java文件 。 文件后缀名为.java 。Hello.java 。【注意】系统可能没有显示文件后缀名,我们需要手动 编写代码 public class Hello{ public static void main (String[] ar ...
分类:其他好文   时间:2021-06-04 19:12:47    阅读次数:0
GORM如何获取查询对象的属性
package main import ( "fmt" "gorm.io/driver/mysql" "gorm.io/gorm" "time" ) type User struct { ID int Name string CreatedTime time.Time } func main() { ...
分类:其他好文   时间:2021-06-04 19:06:12    阅读次数:0
IDEA启动报错
IDEA 启动项目报错: Failed to start connector [Connector[HTTP/1.1-9502]] 原因: 端口被占用 查进出: netstat -ano|findstr 9502 杀进程:taskkill /pid 2640 /f ...
分类:其他好文   时间:2021-06-04 19:02:07    阅读次数:0
常量 变量
类型转换 publicclassdemo06 { publicstaticvoidmain(String[] args) { inti=128; byteb= (byte)i;//内存溢出 byte 最大值127 //低 高 //byte,short,char,int,long,float,doub ...
分类:其他好文   时间:2021-06-04 19:00:16    阅读次数:0
第一个代码
Hello World 随便建一个文件夹,存放代码 新建一个java文件 文件后缀名.java Hello 【注意点】系统没有显示文件后缀名,需要手动打开 编写代码 public class Hello{ public static void main(String[] args){ System. ...
分类:其他好文   时间:2021-06-04 18:59:52    阅读次数:0
Python中__all__的作用
__all__ = [<string>] 它是一个string元素组成的list变量,定义了当你使用 from <module> import * 导入某个模块的时候能导出的符号(这里代表变量,函数,类等)。 其实就是代码保护,限定本模块中只有哪些能被import。 举例:foo.py __all_ ...
分类:编程语言   时间:2021-06-04 18:49:33    阅读次数:0
95377条   上一页 1 ... 27 28 29 30 31 ... 9538 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!