SourceForge.net Logo

Home

Description

Downloads

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Why this library?

Java is getting more and more  a de facto standard in computer programming. Actually, many people thinks C++ is ready to die and soon, it will be used just to write drivers or video games.

I don't think so. We already had many language available: perl, C, C++, Basic, etc. Each of them was good for particular purpose: to my own opinion, JAVA does not make the difference; it is just another language good for some purpose. Expecially, I think it is good for server side application.

Why people then write very weight JAVA http servers? (just an examples between many I could do). One could answer : I write it once and I run it everywhere.

This is the point: I think C++ is portable enough to write such applications: we just need a good framework. When I don't write applets, servlets or EJBs, java is just a good framework: we can write it with C++.

An example

The following code will not compile with the alpha 0.0.1 version !!!

JAVA Code C++ Code with FCCL
import java.util.*;

public static void main(String args[])
{
    Hashtable h = new Hashtable();
    int i;
    System.out.println("");
    System.out.print("PUT");
    for (i = 0; i < 1000; i++)
    {
       h.put ("" + i, "" + i);
       System.out.print (".");
    }
    System.out.print("GET");
    for (i = 0; i < 1000; i++)
    {
    	Object obj = h.get("" + i);
    	System.out.print (".");
    }
}
          

#ifdef WIN32
#include "stdafx.h"
#endif

#include <global.h>
#include <jInteger.h>
#include <jHashtable_jEntry.h>
#include <jString.h>

using namespace fjcl::kernel;
using namespace fjcl::util;

void main(int argc, char* argv[])
{
    P<jHashtable> h = new jHashtable();
    int i;
    printf ("\nPUT:");
    for (i = 0; i < 1000; i++)
    {
       h->put (jInteger::toString(i), jInteger::toString(i));
       printf (".");
    }
	printf ("\nGET:");
    for (i = 0; i < 1000; i++)
    {
       P<jObject> obj = h->get(jInteger::toString(i));
       printf (".");
    }
}