Zum Inhalt springen
View in the app

A better way to browse. Learn more.

Fachinformatiker.de

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Empfohlene Antworten

Veröffentlicht

Hi,

mal angenommen ich habe so eine Klasse:


class Test
{
public:
Test(char* text)
{
strcpy(var,text);
}
char* getvar()
{
return var;
}
private
char var[100];
};
[/PHP]

Dann kann ich die char Variable so ausgeben:

[PHP]
Test t("Hallo");
printf ("%s",t.getvar());

Ich möchte diese Variable aber so ausgeben:


printf ("%s",t);
[/PHP]

Also dass wenn nur das Objekt angegeben ist er immer diese Variable nimmt,

ist das irgendwie möglich?

Gruß

Guybrush

Du kannst für Deine Klasse einen Cast-Operator definieren:

operator char const *() const {
return var;
}[/CODE] Dann wird, wann immer Du eine Instanz von Test an Stelle eines char const* oder char const * const angibst, var verwendet. Damit funktioniert z.B.:
[CODE]printf( t )
Folgendes wird nicht funktionieren, weil die nachfolgenden Parameter bei printf keine Typprüfung haben:
printf( "%s", t );
Die Möglichkeiten wären hier:
printf("%s", static_cast<char const *>( t ) );
printf("%s", (char const *)t );[/code]

Erstelle ein Konto oder melde dich an, um einen Kommentar zu schreiben.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.