码迷,mamicode.com
首页 >  
搜索关键字:class    ( 183544个结果
Ruby的model学习——Active Record Associations
一、如何定义关联     两个model之间常常会存在关联关系,为了解决这些关联引起的复杂操作问题,可以在model定义时定义其关联关系。如:实体customers和orders定义如下: class Customer   has_many :orders, dependent: :destroy end    class Order...
分类:其他好文   时间:2014-10-16 14:55:32    阅读次数:152
java并发编程
锁的持有者,谁是锁 ??? public class Lock (?????? ?????? public synchronized? void fun1(){ ????????????? //业务运算.??????? ?????? }; ?????? public s...
分类:编程语言   时间:2014-10-16 14:48:52    阅读次数:220
Marquee 滚动参数
new marquee("Layer3", 2, 1, 989, 68, 20, 0, 0, 238); 参数说明:Layer3 :容器ID 2 :向上滚动(0向上 1向下 2向左 3向右) 1: 滚动的步长 989:容器可视宽度 68:容器可视高度 20:定时器 数值越小滚动的速度越快(...
分类:其他好文   时间:2014-10-16 14:34:52    阅读次数:195
_02_从键盘读入用户的输入,格式化输出hello+用户输入的信息
Hello.cs文件using System; //引用了一个叫System的名空间class easyInput //类的名字与文件名(Hello.cs)不同也 无所谓{ public static void Main() { string strName; //声明一个string类型的...
分类:其他好文   时间:2014-10-16 13:58:52    阅读次数:148
生兔子的问题(斐波那契数列)
class Program { static void Main(string[] args) {/*题目:有1对幼兔,一个月长成小兔,再一个月长成成兔并生一对小兔,问24个月之后有多少对兔子 int you=1,xiao=0,cheng=0,sum=0;//幼兔you=1,小兔xiao=0,成兔....
分类:其他好文   时间:2014-10-16 13:21:02    阅读次数:123
PAT 1021 Deepest Root
#include #include #include using namespace std;class Node {public: vector adj; bool visited; Node() : visited(false) {}};void reset_nodes(vec...
分类:其他好文   时间:2014-10-16 13:06:32    阅读次数:171
_01_Hello, World!
using System; //引用了一个叫System的名空间class HelloWorld //定义一个叫HelloWorld的类{ public static void Main() //静态的Main方法是程序的入口 { Console.WriteLine("Hello, Wo...
分类:其他好文   时间:2014-10-16 12:45:02    阅读次数:169
[leetcode]Find Minimum in Rotated Sorted Array
很眼熟。。。就是一个二分。。。class Solution {public: int findMin(vector &num) { int size = num.size() - 1; int l = 0; int r = size; w...
分类:其他好文   时间:2014-10-16 12:35:22    阅读次数:180
什么叫段地址 什么叫偏移地址?
偏移地址是指段内相对于段起始地址的偏移值,例如一个存储器的大小是1KB,可以把它分为4段,第一段的地址范围就是0—255,第二段的地址范围就是256-511,依次类推。。这些段内的偏移地址就是在0-255的范围内的。 段地址就是每一段的首地址,第一段的段地址就是0,计算它们的物理地址只需要把段地址左...
分类:其他好文   时间:2014-10-16 07:20:32    阅读次数:208
leetcode:Maximum Depth of Binary Tree
# Definition for a binary tree node# class TreeNode:# def __init__(self, x):# self.val = x# self.left = None# self.right ...
分类:其他好文   时间:2014-10-16 03:27:21    阅读次数:162
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!