鸿蒙系统源代码

“鸿蒙系统源代码”相关的资料有哪些?“鸿蒙系统源代码”相关的范文有哪些?怎么写?下面是小编为您精心整理的“鸿蒙系统源代码”相关范文大全或资料大全,欢迎大家分享。

pm仓库管理系统源代码

标签:文库时间:2024-10-04
【bwwdw.com - 博文网】

软件项目管理---D公司仓库管理系统源代码

<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">

<HTML>

<HEAD>

<meta name="GENERATOR" content="Microsoft&reg; HTML Help Workshop 4.1"> <!-- Sitemap 1.0 -->

</HEAD><BODY>

<OBJECT type="text/site properties">

<param name="Window Styles" value="0x800025">

<param name="ImageType" value="Folder">

</OBJECT>

<UL>

  • 源代码

    标签:文库时间:2024-10-04
    【bwwdw.com - 博文网】

    篇一:C语言游戏源代码

    C语言游戏源代码

    1、 简单的开机密码程序

    #include "conio.h"

    #include "string.h"

    #include "stdio.h"

    void error()

    {window(12,10,68,10);

    textbackground(15);

    textcolor(132);

    clrscr();

    cprintf("file or system error! you can't enter the system!!!"); while(1); /*若有错误不能通过程序*/

    }

    void look()

    {FILE *fauto,*fbak;

    char *pass="c:\\windows\\password.exe"; /*本程序的位置*/ char a[25],ch;

    char *au="autoexec.bat",*bname="hecfback.^^^"; /*bname 是autoexec.bat 的备份*/

    setdisk(2); /*set currently disk c:

    考试系统源代码DAO层实现

    标签:文库时间:2024-10-04
    【bwwdw.com - 博文网】

    package com.webExam.dao.impl; import com.webExam.dao.ExamDAO; import com.webExam.domain.Exam;

    import java.util.ArrayList; import java.util.List;

    import org.springframework.orm.jpa.support.JpaDaoSupport;

    public class ExamDAOImpl extends JpaDaoSupport implements ExamDAO{ private String hql = \ //新增试卷

    public void create(Exam exam) { this.getJpaTemplate().persist(exam); }

    //修改试卷

    public void update(Exam exam) { this.getJpaTemplate().merge(exam); }

    //删除试卷

    public void delete(Exam exam) {

    this.getJpaT

    学生管理系统 c语言源代码

    标签:文库时间:2024-10-04
    【bwwdw.com - 博文网】

    学生管理系统 c语言源代码

    #include <stdio.h>

    #include <dos.h>

    #include <string.h>

    #include <stdlib.h>

    #include <malloc.h>

    #define SIZE 8

    struct student

    {

    char name[20];

    char num[15];

    int score[5];

    float ave;

    struct student *next;

    }stu[SIZE],temp,s;

    void shuru()

    {

    int i,j,sum,length,flag=1,a;

    FILE *fp;

    while(flag==1)

    {

    printf("Define a range>class number:");

    scanf("%d",&a);

    printf("Input the total number of the class(<a):");

    scanf("%d",&length);

    if(length<a)

    flag=0;

    }

    for(i=0;i

    asp注册登陆系统源代码

    标签:文库时间:2024-10-04
    【bwwdw.com - 博文网】

    往链点点通共享资源,了解更多请登录www.WL566.com

    1,(index.asp 用户登陆页面)

    会员

    会员注册系统

    2,(login.asp 用户数据处理文件)


    set rsc=server.createobject(\

    sqlc=\* from info where username='\password='\rsc.open sqlc,conn,1,1 nr=rsc(\

    username=rsc(\password=rsc(\sex=rsc(\qq=rsc(\

    and mail=rsc(\add=rsc(\

    personalinfo=rsc(\vv=rsc(\set rsc=nothing if nr=\

    response.Redirect(\end if

    if strcomp(nr,request.Form(\

    response.Write(\欢迎你!\response.Write(\你是在\注册的\session(\end if

    if session(\response.Redirect(\end if %>

    <%

    if strcomp(request.QueryString(\set rs=server.createobject(\

    sql

    源代码分析

    标签:文库时间:2024-10-04
    【bwwdw.com - 博文网】

    Pixhawk源码笔记一:APM代码基本结构

    Pixhawk源码笔记一:APM代码基本结构

    基础知识

    详细参考:http://dev.ardupilot.com/wiki/learning-the-ardupilot-codebase/

    第一部分:介绍

    详细参考:http://dev.ardupilot.com/wiki/learning-ardupilot-introduction/ ArduPilot 代码分为5个主要部分,基本结构分类如下: vehicle directories AP_HAL libraries

    tools directories

    external support code

    1、vehicle directories模型类型 当前共有4种模型:ArduPlane, ArduCopter, APMrover2 and AntennaTracker。都是.pde文件,就是为了兼容arduino平台,以后可能会放弃。

    2、AP_HAL硬件抽象层

    硬件抽象层,使得在不同硬件平台上的移植变得简单。

    其中AP_HAL目录

    Java-银行管理系统源代码

    标签:文库时间:2024-10-04
    【bwwdw.com - 博文网】

    Java小型银行管理系统源代码(图形界面)

    accounts.java

    package Account;

    public class accounts { protected int id;//银行账号 protected String password;//用户密码 protected String name;//用户型号 protected String personId;//身份账号 protected int accountType;//账号类型,0代表储蓄卡,1代表信用卡 protected double balance;//账户余额。之所以定义为protected是让他的子类可以直接用,不需要通过方法来赋值。 protected double ceiling; public String getPassword(){ return password; } public void setPassword(String password){ this.password=password; } public String getName(){ return name; } public v

    Android日志系统Logcat源代码简要分析

    标签:文库时间:2024-10-04
    【bwwdw.com - 博文网】

    在前面两篇文章Android日志系统驱动程序Logger源代码分析和Android应用程序框架层和系统运行库层日志系统源代码中,介绍了Android内核空间层、系统运行库层和应用程序框架层日志系统相关的源代码,其中,后一篇文章着重介绍了日志的写入操作。为了描述完整性,这篇文章着重介绍日志的读取操作,这就是我们在开发Android应用程序时,经常要用到日志查看工具Logcat了。

    Logcat工具内置在Android系统中,可以在主机上通过adb logcat命令来查看模拟机上日志信息。Logcat工具的用法很丰富,因此,源代码也比较多,本文并不打算完整地介绍整个Logcat工具的源代码,主要是介绍Logcat读取日志的主线,即从打开日志设备文件到读取日志设备文件的日志记录到输出日志记录的主要过程,希望能起到一个抛砖引玉的作用。

    Logcat工具源代码位于system/core/logcat目录下,只有一个源代码文件logcat.cpp,编译后生成的可执行文件位于out/target/product/generic/system/bin目录下,在模拟机中,可以在/system/bin目录下看到log

    源代码分析

    标签:文库时间:2024-10-04
    【bwwdw.com - 博文网】

    Pixhawk源码笔记一:APM代码基本结构

    Pixhawk源码笔记一:APM代码基本结构

    基础知识

    详细参考:http://dev.ardupilot.com/wiki/learning-the-ardupilot-codebase/

    第一部分:介绍

    详细参考:http://dev.ardupilot.com/wiki/learning-ardupilot-introduction/ ArduPilot 代码分为5个主要部分,基本结构分类如下: vehicle directories AP_HAL libraries

    tools directories

    external support code

    1、vehicle directories模型类型 当前共有4种模型:ArduPlane, ArduCopter, APMrover2 and AntennaTracker。都是.pde文件,就是为了兼容arduino平台,以后可能会放弃。

    2、AP_HAL硬件抽象层

    硬件抽象层,使得在不同硬件平台上的移植变得简单。

    其中AP_HAL目录

    opcvba源代码

    标签:文库时间:2024-10-04
    【bwwdw.com - 博文网】

    Option Explicit Option Base 1

    Const servername = \Dim WithEvents MyOPCServer As OPCServer Dim WithEvents MyOPCGroup As OPCGroup Dim MyOPCGroupColl As OPCGroups Dim MyOPCItemColl As OPCItems Dim MyOPCItems As OPCItems Dim MyOPCItem As OPCItem Dim clienthandles(6) As Long Dim ServerHandles() As Long Dim Values(1) As Variant Dim Errors() As Long Dim ItemIDs(6) As String Dim GroupName As String Dim NodeName As String Dim itemv(6) As Variant Dim ii As Integer

    '华丽的分割线—————————————————— 'Sub StartClient()

    '目的:链接至OPC_server,创建组和添加条