Интроспекция — это способность программы изучать объекты во время выполнения: узнавать их тип, структуру, атрибуты, методы и даже иерархию наследования.
🧩 Это мощный инструмент, встроенный в Python (а также доступный в других языках, например Java, PHP, Ruby). Он позволяет, например:
— Проверить тип объекта с помощью type() — Проверить, к какому классу принадлежит объект — isinstance(obj, Class) — Получить список доступных атрибутов и методов — dir(obj) — Изучить содержимое объекта — через __dict__
Пример:
class Foo: def __init__(self, val): self.x = val def bar(self): return self.x
obj = Foo(5) print(dir(obj))
Результат:
['__class__', '__dict__', ..., 'bar', 'x']
Это удобно для отладки, разработки, рефлексии, создания универсальных функций, которые могут работать с разными типами данных.
Интроспекция — это способность программы изучать объекты во время выполнения: узнавать их тип, структуру, атрибуты, методы и даже иерархию наследования.
🧩 Это мощный инструмент, встроенный в Python (а также доступный в других языках, например Java, PHP, Ruby). Он позволяет, например:
— Проверить тип объекта с помощью type() — Проверить, к какому классу принадлежит объект — isinstance(obj, Class) — Получить список доступных атрибутов и методов — dir(obj) — Изучить содержимое объекта — через __dict__
Пример:
class Foo: def __init__(self, val): self.x = val def bar(self): return self.x
obj = Foo(5) print(dir(obj))
Результат:
['__class__', '__dict__', ..., 'bar', 'x']
Это удобно для отладки, разработки, рефлексии, создания универсальных функций, которые могут работать с разными типами данных.
The global forecast for the Asian markets is murky following recent volatility, with crude oil prices providing support in what has been an otherwise tough month. The European markets were down and the U.S. bourses were mixed and flat and the Asian markets figure to split the difference.The TSE finished modestly lower on Friday following losses from the financial shares and property stocks.For the day, the index sank 15.09 points or 0.49 percent to finish at 3,061.35 after trading between 3,057.84 and 3,089.78. Volume was 1.39 billion shares worth 1.30 billion Singapore dollars. There were 285 decliners and 184 gainers.
China’s stock markets are some of the largest in the world, with total market capitalization reaching RMB 79 trillion (US$12.2 trillion) in 2020. China’s stock markets are seen as a crucial tool for driving economic growth, in particular for financing the country’s rapidly growing high-tech sectors.Although traditionally closed off to overseas investors, China’s financial markets have gradually been loosening restrictions over the past couple of decades. At the same time, reforms have sought to make it easier for Chinese companies to list on onshore stock exchanges, and new programs have been launched in attempts to lure some of China’s most coveted overseas-listed companies back to the country.