码迷,mamicode.com
首页 >  
搜索关键字:about swift    ( 11439个结果
vue的增删改查(简单版)
<template> <div class="about"> <div> <input type="text" placeholder="留言人" v-model="obj.name" /> <input type="text" placeholder="内容" v-model="obj.con"  ...
分类:其他好文   时间:2020-06-15 20:53:41    阅读次数:109
defer in C++/Objc
写过swift的同学应该都知道defer这个关键字,可以让我们在函数return之前执行指定的代码,这对于有多个提前return而忘记释放资源的函数来说,简直不要太方便了,然而对于swift的前辈Objective-C或C++来说,苹果并没有帮我们定义,因此本文总结一下如何在C++和Objectiv... ...
分类:编程语言   时间:2020-06-14 18:54:28    阅读次数:63
内核模块管理工具
lsmod:内容来自/proc/modules modinfo:show information about linux kernel module modprobe: modprobe --show-depends ext4 显示ext4内核模块的依赖关系 --dry-run 测试目的 --sho ...
分类:其他好文   时间:2020-06-14 18:44:20    阅读次数:64
About Me
关于我 一个佛系(默默无闻)的小程序员, 也想写出牛逼的代码 大学曾参与过 ACM, 现已退役,偶尔写写 Leetcode 博客主题来源于 silence 发现很多时候自己写过的博客,并没有起反思总结的作用(555, 想玩的时候学不下去,想学的时候要学的东西太多) 现在更喜欢用 issues 来提醒 ...
分类:其他好文   时间:2020-06-14 13:07:44    阅读次数:113
ElasticSearch-02-elasticsearch.yaml
# Elasticsearch Configuration # # NOTE: Elasticsearch comes with reasonable defaults for most settings. # Before you set out to tweak and tune the con ...
分类:其他好文   时间:2020-06-13 16:02:42    阅读次数:62
[Intro to Deep Learning with PyTorch -- L2 -- N15] Softmax function
The Softmax Function In the next video, we'll learn about the softmax function, which is the equivalent of the sigmoid activation function, but when t ...
分类:其他好文   时间:2020-06-11 09:15:58    阅读次数:62
swift5.x 错误处理
// // ViewController19.swift // swiftT // // Created by wjwdive on 2020/6/8. // Copyright © 2020 wjwdive. All rights reserved. // import UIKit class V ...
分类:编程语言   时间:2020-06-10 19:15:45    阅读次数:60
swift5.x 访问权限控制
// swift 里的 权限控制 // 模块和源文件 //模块: 模块指的是独立的代码分发单元,框架或应用程序会作为一个独立的模块来构建和发布。在swift中,一个模块可以使用import关键字导入另一个模块 //源文件: 源文件就是swift 里的源代码文件,它通常属于一个模块,即一个应用程序或者 ...
分类:编程语言   时间:2020-06-10 19:06:26    阅读次数:65
STM32 学习:IAP有关介绍
title: mcu-stm32-IAP-0-about date: 2020-05-27 08:51:58 categories: tags: - iap - stm32 - about 章节概述: 介绍什么是IAP、IAP的前置知识。 IAP IAP(In Application Program ...
分类:其他好文   时间:2020-06-09 23:44:34    阅读次数:63
34. 在排序数组中查找元素的第一个和最后一个位置
二分,边界判断好麻烦啊 TNT,代码好像还能简便一些 给定一个按照升序排列的整数数组 nums,和一个目标值 target。找出给定目标值在数组中的开始位置和结束位置。 你的算法时间复杂度必须是 O(log n) 级别。 如果数组中不存在目标值,返回 [-1, -1]。 示例 1: 输入: nums ...
分类:编程语言   时间:2020-06-09 20:27:34    阅读次数:46
11439条   上一页 1 ... 15 16 17 18 19 ... 1144 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!