码迷,mamicode.com
首页 >  
搜索关键字:3com switch 2924-sfp plus    ( 9342个结果
C Primer Plus (第四章总结)
1.定义字符串可以直接在头文件下定义,如:#include<stdio.h>#definehello"helloworld!"2.sizeof()和strlen()sizeof运算符是以字节为单位给出数据的大小,strlen()是以字符为单位给出长度。<string.h>包含许多与字符串相关的函数的原型,包括strlen()sizeof运算..
分类:其他好文   时间:2014-05-16 02:39:31    阅读次数:211
[转]Oracle DB进程体系结构
1、进程体系结构Oracle DB 系统中的进程主要分为两组:? 运行应用程序或Oracle 工具代码的用户进程? 运行Oracle DB 服务器代码的Oracle DB 进程(包括服务器进程和后台进程)当用户运行应用程序或Oracle 工具(例如SQL*Plus)时,Oracle DB 会创建一个...
分类:数据库   时间:2014-05-16 00:57:05    阅读次数:548
Android 4.4 Kitkat 使能 USB adb 功能
背景 在 Linux-3.8 以后,Android 的内核分支,便去掉了 f_adb,改使用 USB function FS,在用户空间实现 USB adb 功能。这篇文章根据原作者的 Google+ 文章,在 Atmel sama5 开发板上做了测试,将步骤记录如下,供需要使用的读者参考,你也可以查看作者原文:https://plus.google.com/111524780435806926...
分类:移动开发   时间:2014-05-15 23:30:11    阅读次数:538
Differences between Hub, Network Bridge, Switch and Router
Beforewetalkaboutthedifferencesbetweenthesenetworkdevices,wehavetounderstandtheconflictdomainandbrocastdomainfirst.Takebusnetworktopologyforexample,allthePCsareconnectingtothesamebusline.IfmultiplePCsaresendingthesignalatthesametime,itwillcreateaconflictdom..
分类:Web程序   时间:2014-05-15 18:48:26    阅读次数:381
恢复Cisco 2960交换机密码
重启交换机,按住mode键。flash_initswitch:dirflash:switch:renameflash:config.textflash:config.oldswitch:bootWouldyouliketoentertheinitialconfigurationdialog?[yes/no]:noSwitch>enSwitch#renameflash:config.oldflash:config.textDestinationfilename[config.text]..
分类:其他好文   时间:2014-05-15 12:46:02    阅读次数:279
c++ primer plus(第6版)中文版 第十章编程练习答案
第十章编程练习答案...
分类:编程语言   时间:2014-05-15 04:26:27    阅读次数:423
【LeetCode】Plus One
题目 Given a non-negative number represented as an array of digits, plus one to the number. The digits are stored such that the most significant digit is at the head of the list. 解答 本题考察进位问题,注...
分类:其他好文   时间:2014-05-15 04:16:56    阅读次数:245
php第二天补充
1.在函数中用return将返回值传递给调用者。在全局作用域中使用return,则中止脚本运行。2.变量函数,实际上就是将函数名付给一个变量$func,之后变量后加一个括号就代表调用了原来的函数functioncome(){echo‘北京‘;}$func="come";$func();3.rand(min,max)生成在min和max之间的..
分类:Web程序   时间:2014-05-15 01:05:35    阅读次数:375
switch语句
switch 语句int x = 10switch(x) case 1:print(“sfsd”)breakcase 2:print(“dsdf”)breakdefaultprint(“right”)break
分类:其他好文   时间:2014-05-14 23:47:11    阅读次数:263
60行R++代码实现Lisp解释器
还没有处理lambda、上下文等,有待完善。 main { for putsl(eval(getsl)) } rstr eval(rstr s) { s=tokenize(s) v=s.split(' ') if v.get(0)!='(' return v.get(0) next=find(v.sub(2))+2 switch v.get(1) case '+' r...
分类:其他好文   时间:2014-05-14 15:32:34    阅读次数:323
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!