码迷,mamicode.com
首页 >  
搜索关键字:javascript string    ( 154983个结果
消除 if else 判断
1.if..else public int calculate(int a, int b, String operator) { int result = Integer.MIN_VALUE; if ("add".equals(operator)) { result = a + b; } else ...
分类:其他好文   时间:2021-07-15 18:58:38    阅读次数:0
C语言动态分配内存及回收
用malloc和free;类似与C++的new和delete 代码: #include <iostream> #include <string> using namespace std; int main(int argc, char* argv[]) { void* ptr = (void*)ma ...
分类:编程语言   时间:2021-07-15 18:57:44    阅读次数:0
== 和 equals区别
== equals是两种字符串的方式 区别 == 是比较两个对象的引用地址值 equals是比较两个对象的具体内容 示例 package com.oop.demo06; public class Demo01 { public static void main(String[] args) { St ...
分类:其他好文   时间:2021-07-14 18:50:51    阅读次数:0
C++ JNI jstring to string (utf16 to utf8)
JNI中jstring转码到std::string其实就是utf16转码到你选择的编码的过程,因为我C++程序要用utf8,所以这里我转成utf8 用到的转码库是utfcpp 这个库的使用方法就是下载source文件夹下全部内容,然后#include "utf8.h"在你的项目 代码: std::s ...
分类:编程语言   时间:2021-07-12 18:01:37    阅读次数:0
JavaScript
定义和用法 valueOf() 方法可以字符串返回数字。 浏览器支持 所有主要浏览器都支持 valueOf() 方法。 语法 number.valueOf() 返回值 类型 描述 Number 一个数的原始值 技术细节 JavaScript 版本: 1.1 实例 返回一个Number对象的基本数值 ...
分类:编程语言   时间:2021-07-09 17:53:43    阅读次数:0
javascript的初步认识
1.何为javascript javascript被设计用来向HTML页面添加交互行为。 javascript是一种脚本语言 javascript是一种解释性语言(解释性语言:代码执行不进行预编译)。 2.javascript的作用 使用javascript添加页面动画效果,提供用户操作体验。主要应 ...
分类:编程语言   时间:2021-07-08 17:42:58    阅读次数:0
Http Post Json参数及Json接收
private string HttpRequest(Dictionary<string, object> dic, string url) { string json = JSONhelper.ObjToJson(dic); WebRequest request = WebRequest.Crea ...
分类:Web程序   时间:2021-07-07 17:56:22    阅读次数:0
leetcode-227-基本计算器||
public int calculate(String s) { int len = s.length(); Stack<Integer> s1 = new Stack<>(); // 操作数栈 int num = 0; char preSign = '+'; // 为了方便计算,1+1+1 > + ...
分类:其他好文   时间:2021-07-07 17:55:15    阅读次数:0
MyBatis温故而知新-底层运行原理
准备工作 public class MainClass { public static void main(String[] args) throws Exception { String resources = "mybatis-config.xml"; InputStream inputStre ...
分类:其他好文   时间:2021-07-07 17:50:47    阅读次数:0
文件上传
@PostMapping("uploads") public String posts(@RequestParam("file") List<MultipartFile> files){//参数file以list数组接收 if (files.isEmpty()) { return "上传失败,请选择 ...
分类:Web程序   时间:2021-07-06 16:22:43    阅读次数:0
154983条   上一页 1 2 3 4 5 ... 15499 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!