Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
241c2e96
Kaydet (Commit)
241c2e96
authored
Şub 06, 2003
tarafından
Michael W. Hudson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Remove another lie.
üst
847f3754
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
extending.tex
Doc/ext/extending.tex
+2
-4
No files found.
Doc/ext/extending.tex
Dosyayı görüntüle @
241c2e96
...
@@ -818,10 +818,8 @@ In languages like C or \Cpp, the programmer is responsible for
...
@@ -818,10 +818,8 @@ In languages like C or \Cpp, the programmer is responsible for
dynamic allocation and deallocation of memory on the heap. In C,
dynamic allocation and deallocation of memory on the heap. In C,
this is done using the functions
\cfunction
{
malloc()
}
and
this is done using the functions
\cfunction
{
malloc()
}
and
\cfunction
{
free()
}
. In
\Cpp
, the operators
\keyword
{
new
}
and
\cfunction
{
free()
}
. In
\Cpp
, the operators
\keyword
{
new
}
and
\keyword
{
delete
}
are used with essentially the same meaning; they are
\keyword
{
delete
}
are used with essentially the same meaning and
actually implemented using
\cfunction
{
malloc()
}
and
we'll restrict the following discussion to the latter.
\cfunction
{
free()
}
, so we'll restrict the following discussion to the
latter.
Every block of memory allocated with
\cfunction
{
malloc()
}
should
Every block of memory allocated with
\cfunction
{
malloc()
}
should
eventually be returned to the pool of available memory by exactly one
eventually be returned to the pool of available memory by exactly one
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment