码迷,mamicode.com
首页 >  
搜索关键字:show all    ( 41857个结果
JavaScript面向对象-静态方法-私有方法-公有方法-特权方法,学习
var baseClass= function(){ function show(){//私有方法 alert("访问私有方法"); } function showName(){ alert(this.name); ...
分类:编程语言   时间:2014-07-19 18:01:14    阅读次数:232
【leetcode刷题笔记】Path Sum
Given a binary tree and a sum, determine if the tree has a root-to-leaf path such that adding up all the values along the path equals the given sum.Fo...
分类:其他好文   时间:2014-07-18 18:28:44    阅读次数:231
Sublime Text 3 安装插件管理 Package Control
自动安装: 1、通过快捷键 ctrl+` 或者 View > Show Console 菜单打开控制台 2、粘贴对应版本的代码后回车安装 适用于 Sublime Text 3: import  urllib.request,os;pf='Package Control.sublime-package';ipp=sublime.installed_packages_p...
分类:其他好文   时间:2014-07-18 18:08:25    阅读次数:188
mysql 打开远程连接
1、在控制台执行 mysql -u root -p mysql,系统提示输入数据库root用户的密码,输入完成后即进入mysql控制台,这个命令的第一个mysql是执行命令,第二个mysql是系统数据名称,不一样的。2、在mysql控制台执行 GRANT ALL PRIVILEGES ON *.* ...
分类:数据库   时间:2014-07-18 17:32:06    阅读次数:203
after_create and after_commit
A relational database, like mysql, provides transactions to wrap several operations in one unit, make them all pass or all fail. All isolation levels ...
分类:其他好文   时间:2014-07-18 17:21:39    阅读次数:287
利用JavaScript通过单选框radio控制div的显示和隐藏
通过鼠标单击单选框的动作,实现某个div或多个div的显示和隐藏。实例如下:JavaScript代码如下: 1 function divClick(){ 2 3 var show = ""; 4 show = $("input[name='AdPr...
分类:编程语言   时间:2014-07-18 17:19:47    阅读次数:392
【leetcode刷题笔记】N-Queens
Then-queens puzzle is the problem of placingnqueens on ann×nchessboard such that no two queens attack each other.Given an integern, return all distinc...
分类:其他好文   时间:2014-07-18 15:07:26    阅读次数:223
不能读取 AppletViewer 的属性文件: C:\Users\Administrator\.hotjava\properties
解决方法:1.打开命令提示窗口(cmd)2.打入PolicyTool并按Enter3.在 PolicyTool对话框中,点击Add Policy Entry按钮(添加规则项目)4.点击Add Permission 按钮(添加 权限)5.点击许可下拉菜单选择 All Permission6.点击ok(...
分类:移动开发   时间:2014-07-18 13:29:50    阅读次数:295
IAR Embedded Workbench for ARM 7.10
此授权文件无任何限制,全功能通用版。可自动解压LibSource使用方法:1.解压缩EWARM_7.10_License.rar,取得Selected.package。2.复制Selected.package文件到指定目录:XP: C:\Documents and Settings\All User...
分类:其他好文   时间:2014-07-18 12:14:55    阅读次数:841
[LeetCode] Palindrome Partitioning
Given a strings, partitionssuch that every substring of the partition is a palindrome.Return all possible palindrome partitioning ofs.For example, giv...
分类:其他好文   时间:2014-07-18 12:12:12    阅读次数:222
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!