zoukankan
html css js c++ java
actionscript3.0 的一些小技巧
1. 画空心矩形(其他的空心圆之类的东西也是使用的)
rect.beginFill(0,1);
rect.drawRect(0,0,480,480);
rect.drawRect(3.5,3.5,473,473);
rect.endFill();
2.try...catch 能不用就不用,这个会影响As3程序的性能
查看全文
相关阅读:
Lintcode: Two Strings Are Anagrams
Leetcode: House Robber
Leetcode: Binary Tree Right Side View
Leetcode: Number of Islands
Lintcode: Subarray Sum
Lintcode: Sort Letters by Case
Lintcode: Sort Colors II
Lintcode: Single Number III
Lintcode: Search Range in Binary Search Tree
Lintcode: Binary Tree Serialization (Serialization and Deserialization Of Binary Tree)
原文地址:https://www.cnblogs.com/seabrea/p/4001106.html
最新文章
Python mysql backup
Leetcode: House Robber II
Leetcode: Contains Duplicate II
Leetcode: Kth Largest Element in an Array
Leetcode: Contains Duplicate
Leetcode: Minimum Size Subarray Sum
Leetcode: Add and Search Word
Leetcode: Implement Trie (Prefix Tree) && Summary: Trie
Leetcode: Course Schedule II
Leetcode: Course Schedule
热门文章
Leetcode: Isomorphic Strings
Leetcode: Reverse Linked List
Leetcode: Count Primes
Leetcode: Remove Linked List Elements
Leetcode: Bitwise AND of Numbers Range
Leetcode: Happy Number
Latex技巧
Lintcode: Singleton && Summary: Synchronization and OOD
Lintcode: Topological Sorting
Lintcode: Rotate String
Copyright © 2011-2022 走看看