• 计算机讨论版
  • 电脑诊所
  • 菜鸟学院
  • 软件世界
  • 安全专区
  • 硬件世界
  • 网络世界
  • 网页设计
  • 图像设计
  • 程序设计
  • 操作系统
  • 计算机考试
  • 电脑故障
  • 电脑学习
  • 电脑技术
  • 电脑入门
  • 计算机知识
  • 电脑之家
  • 故障诊断
  • 电脑医院
  • 电脑学校
  • 电脑维护
  • 电脑医生
  • 电脑问答
  • 计算机问题
  • 电脑小知识
  • 电脑软件
  • 电脑diy
  • 你问我答
  • 网友俱乐部
  • 实用技巧
  • 初级应用
  • 心得分享
  • 软硬兼施
  • 电脑之家
  • 维护资料
  • 软件应用
  • 软件交流
  • 电脑硬件
  • 硬件知识
  • 电脑网络
  • windows
  • 程序设计

    程序设计
    ·新手请教
    ·VB程序安装后运行结果不对?
    ·谁能帮做一个JAVA2小程序
    ·Delphi 的封装问题  求助!
    ·求助
    ·0x00000041是什么意思
    ·我菜鸟的问题?
    ·请教一个编程问题,谢谢
    ·想用c++和java买什么书好?
    ·sql 问题[求助]
    ·求助:关于计算机操作系统的课程设计
    ·c++高手来帮帮忙!谢谢了
    ·关于c++
    ·请教一个数据结构问题谢谢!
    ·VB高手请进来,有个很幽默的问题想问[求助]
    ·一个小问题
    ·请问哪有foxpro6.0下载啊?
    ·跪求清华版IBM-PC习题答案
    ·组合框内的项  VFP 加急啊!
    ·c++到底能做什么
    ·Qbase 是程序吗?
    ·求助。一道有挑战性的编程题,各位c++高手
    ·C#排序算法大全[分享]
    ·VFP中的组合框
    ·如何让你的SQL运行得更快
    ·关于2004程序员考试的几点疑问
    ·用VB创建浏览器
    ·VFP数据库问题!!!
    ·我要作软件!!
    ·闷闷的西红柿爱人

    [原创]介绍 ORBacus

    类别: 程序设计  时间: 2007.03.15

    cheyenne
    [原创]介绍 ORBacus
    --> 什么是 ORBacus?

    1、 ORB:Object Request Broker
    CORBA:Common Object Request Broker Architecture

    2、 ORBacus:an ORB that is compliant with the CORBA specification as defined in “The Common Object Request Broker: Architecture and Specification” and “IDL/Java Language Mapping”.

    --> ORBacus 的精华在于:

    1、 Release 3.1:
    Full CORBA IDL support
    Complete CORBA IDL-to-C++ mapping
    Complete CORBA IDL-to-Java mapping
    Includes the Basic CORBA Services Naming, Event and Property
    Pluggable Protocols with IIOP as the default plug-in
    Single - and Multi – Threaded support with several concurrency models: Blocking, Reactive, Threaded, Thread-per-Client, Thread-per-Request and Thread Pool
    Nested method invocations, even in the single-threaded version
    Support for timeouts
    Seamless event loop integration with X11 and Windows
    Full support for dynamic programming: Dynamic Invocation Interface, Dynamic Skeleton, Interface Repository and DynAny
    IDL-to-HTML and IDL-to-RTF translators for generating “javadoc”-style documentation

    2、 Release 4.0:
    Full CORBA IDL support
    C++ and Java Language mappings
    Simple configuration and bootstrapping
    Portable Object Adapter
    Objects by value
    Portable Interceptors
    Single – and Multi – Threaded
    Active Connection Management
    Fault Tolerant Extensions
    Dynamic Invocation and Dynamic Skeleton Interface
    Dynamic Any
    Interface and Implementation Repository
    Pluggable Protocols
    IDL –to-HTML and IDL-RTF documentation tools
    Includes Naming, Trading, Event, Property and Time Service


    ALLISON

    楼主以后多介绍C++的基础知识就好了,十分感谢!

    cheyenne

    从 helloworld 程序说起:

    // C++
    #include <iostream>

    int main(int, char *[], char *[])
    {
      cout << "hello world" << endl;
      return 0;
    }

    // Java
    public class Greeter
    {
      public static void main(String args[])
      {
         System.out.println("hello world");
      }
    }

    怎么建立一个基于 CORBA 的 hello world 程序呢?第一步就是创建一个包含我们的 IDL 定义的文件。

    // IDL
    interface Hello // 定义了一个名字叫 Hello 的接口
    {
      void hello(); // 唯一的一个操作,没有任何变量和返回值。
    };


    上一篇:新手请教 下一篇:一个小问题

    计算机讨论版 © 版权所有

    提示:计算机讨论版致力于电脑信息的分享与传播,内容仅供参考,按此操作责任自负。