ICode9

精准搜索请尝试: 精确搜索
  • CSCI3136 Assignment2019-07-08 20:52:30

    CSCI3136Assignment 7Consider the grammar for the Splat programming language in Figure 1, where the terminal intdenotes an integer, the terminal symbol, and the terminal string denotes a quoted string.Figure 1: A grammar for the Splat language.Splat, is a

  • ARM GNU 常用汇编伪指令介绍2019-06-29 08:48:42

    abort .abort: 停止汇编 .align abs­expr1, abs­expr2: 以某种对齐方式,在未使用的存储区域填充值. 第一个值表示对齐方式,4, 8,16 或 32. 第 二个表达式值表示填充的值. if...else...endif .if .else .endif: 支持条件预编译 include .include "file": 包含指定的头文件,

  • Python re module (regular expressions)2019-06-22 18:51:15

    regular expressions (RE) 简介   re模块是python中处理正在表达式的一个模块 1 r"""Support for regular expressions (RE). 2 3 This module provides regular expression matching operations similar to 4 those found in Perl. It supports both 8-bit and Unicode

  • spring boot整合Thymeleaf2019-06-22 18:00:38

    1、引入thymeleaf; <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> 2.1.6 </dependency> 切换thymeleaf版本 <pr

  • 关于idea中使用lamb表达式报错:ambda expressions are not supported at this language level2019-06-16 18:40:26

    我使用的是jdk1.8,使用lamb表达式的时候,报错 ambda expressions are not supported at this language level, 后来,设置了 接着重启了项目,在使用的过程中依然报错,后来查阅资料,说虽然设置了,但是idea默认还是1.5,关键的是需要在pom.xml文件中添加: <properties> <maven.compiler.sourc

  • C# 常用特性2019-06-13 10:01:50

    C# 2特性 (VS 2005) Generics:泛型Anonymous methods:匿名方法Nullable types:可以为Null的类型,该类可以是其它值或者nullGetter/setter separate accessibility:属性访问控制Static classes:静态类 C# 3特性 (VS 2008) Auto-Implemented properties:自动属性,自动生成属性方法,声明更简洁A

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有