Eine aufbereitete Darstellung der Quelle

 
     
 
 
Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 

Benutzer

Quelle  Main.java

  Sprache: JAVA
 

/*
 * Copyright (C) 2009 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */


import java.util.concurrent.CountDownLatch;

public class Main {
    Bitmap mBitmap1, mBitmap2, mBitmap3, mBitmap4;
    CountDownLatch mFreeSignalA, mFreeSignalB;

    public static void sleep(int ms) {
        try {
            Thread.sleep(ms);
        } catch (InterruptedException ie) {
            System.out.println("sleep interrupted");
        }
    }

    public static void main(String args[]) {
        System.out.println("start");

        Main main = new Main();
        main.run();

        System.out.println("done");
    }

    public void run() {
        createBitmaps();

        Runtime.getRuntime().gc();
        sleep(250);

        mBitmap2.drawAt(00);

        System.out.println("nulling 1");
        mBitmap1 = null;
        Runtime.getRuntime().gc();
        try {
          mFreeSignalA.await();  // Block until dataA is definitely freed.
        } catch (InterruptedException e) {
          System.out.println("got unexpected InterruptedException e: " + e);
        }

        System.out.println("nulling 2");
        mBitmap2 = null;
        Runtime.getRuntime().gc();
        sleep(200);

        System.out.println("nulling 3");
        mBitmap3 = null;
        Runtime.getRuntime().gc();
        sleep(200);

        System.out.println("nulling 4");
        mBitmap4 = null;
        Runtime.getRuntime().gc();
        try {
          mFreeSignalB.await();  // Block until dataB is definitely freed.
        } catch (InterruptedException e) {
          System.out.println("got unexpected InterruptedException e: " + e);
        }

        Bitmap.shutDown();
    }

    /*
     * Create bitmaps.
     *
     * bitmap1 is 10x10 and unique
     * bitmap2 and bitmap3 are 20x20 and share the same storage.
     * bitmap4 is just another reference to bitmap3
     *
     * When we return there should be no local refs lurking on the stack.
     */

    public void createBitmaps() {
        Bitmap.NativeWrapper dataA = Bitmap.allocNativeStorage(1010);
        mFreeSignalA = dataA.mPhantomWrapper.mFreeSignal;
        Bitmap.NativeWrapper dataB = Bitmap.allocNativeStorage(2020);
        mFreeSignalB = dataB.mPhantomWrapper.mFreeSignal;

        mBitmap1 = new Bitmap("one"1010, dataA);
        mBitmap2 = new Bitmap("two"2020, dataB);
        mBitmap3 = mBitmap4 = new Bitmap("three/four"2020, dataB);
    }
}

Messung V0.5 in Prozent
C=82 H=92 G=86

¤ Dauer der Verarbeitung: 0.11 Sekunden  (vorverarbeitet am  2026-06-29) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.






                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Software

     Quellcodebibliothek
     Eigene Quellcodes
     Fremde Quellcodes
     Suchen

Aktivitäten

     Artikel über Sicherheit
     Anleitung zur Aktivierung von SSL

Muße

     Gedichte
     Musik
     Bilder

Jenseits des Üblichen ....
    

Besucherstatistik

Besucherstatistik