最近参加了一次蚂蚁金服的面试,其中有两道笔试题,分别是手写事件总栈和手写模板引擎 手写模板引擎比较复杂,除了需要识别 {{data.name}} 这种基本情况之外, 还要兼顾 {{data.info[1]}}、{{data.others["about"]}} 于是先记录下手写事件总栈,后面再完善手写 ...
分类:
其他好文 时间:
2021-05-24 13:06:22
阅读次数:
0
1.前言 实现被遮挡部分高亮的shader 2.完整shader Shader "Custom/HiddenHilight" { Properties { _Color ("Color", Color) = (1,1,1,1) _MainTex ("Albedo (RGB)", 2D) = "whi ...
分类:
其他好文 时间:
2021-05-24 13:02:50
阅读次数:
0
##General English:7 ###Unit4 Talking about your TV viewing habits ###Vocabulary documentary a television documentary about/on the future of nuclear po ...
Swift 异常处理 错误类型 语法错误 逻辑错误 运行时错误 自定义错误 通过error 协议来自定义错误,通常我们使用枚举类型来定义错误 enum SomeError :Error { //关联类型是符串 case illegalArg(String) case outOfBounds(Int, ...
分类:
编程语言 时间:
2021-05-24 09:05:28
阅读次数:
0
// // BMTableViewHeaderCell.swift // BullMan // // Created by Apple on 2021/5/14. // import Foundation class BMTableViewHeaderCell: NSTableHeaderCell ...
分类:
编程语言 时间:
2021-05-24 09:05:08
阅读次数:
0
一个最简单的完整的 Swift 程序如下所示: print("Hello, world!") 类似于 Python 等脚本语言,写在全局的代码作为程序的入口,不需要定义 main 函数 使用 print 等输入输出函数时,不需要像 C/C++ 一样包含相关的头文件或库 语句结尾不需要加分号 Simp ...
分类:
移动开发 时间:
2021-05-24 05:47:33
阅读次数:
0
##General English:6-Elementary ###1 Grammar Reported questions - past tense Reported questions – past tense Statements can be reported in either the p ...
分类:
其他好文 时间:
2021-05-23 22:58:08
阅读次数:
0
What will I be benefited with on reading the book ''Computer Systems: A Programmer's Perspective''? Randy Bryant , works at Carnegie Mellon University ...
分类:
其他好文 时间:
2021-05-04 16:35:11
阅读次数:
0
Introduction This article is about some concepts of the biomedical data analysis. Question 1 (a) First-principle(FP) models & Data driven(DD) models D ...
分类:
其他好文 时间:
2021-04-27 14:16:10
阅读次数:
0
1 import Home from '../views/Home.vue' { path: '/', name: 'Home', component: Home }, 2 { path: '/about', name: 'About', component: () => import('../vi ...
分类:
其他好文 时间:
2021-04-16 12:13:05
阅读次数:
0