create database if not exists yang; drop database if exists yang; show databases; show databases like 'yang%'; create table yang_tableOne(name varchar(50),age int(20),address varchar(50)); show tables from yang; show tables from yang…
原文地址:http://www.cnblogs.com/flypig88/archive/2012/05/14/2497780.html 看了Mustache的github,学学其中的语法,做个笔记 1.简单的变量替换:{{name}} 1 var data = { "name": "Willy" }; 2 Mustache.render("{{name}} is awesome.",data); 返回结果 Willy is awesome. 2…
1. auto (page107) auto 推断会忽略const const int ci = i, & cr = ci; auto b = ci; // b is an int (top-level const in ci is dropped) auto c = cr; // c is an int (cr is an alias for ci whose const is top-level) auto d = & i; // d is an int*(& of an…
JS语法: JS知识点一览图 JS知识点一览图 在function中写this,在本function中可以显示,写Person则显示undefined. 在function中写Person,在function外可以显示,写this则显示undefined. var name; var age; var info; function Person(name,age){ this.name=name; Person.age=age; this.info=function(){ document.wr…